public function contact()
 {
     return View::make('users.contact-us')->with('contact', ContactInfo::where('status', '=', 1)->get())->with('facebooks', ContactInfo::select('facebook')->where('status', '=', 1)->get())->with('twitters', ContactInfo::select('twitter')->where('status', '=', 1)->get())->with('googles', ContactInfo::select('google')->where('status', '=', 1)->get());
 }