public function showModal()
 {
     $id = Input::get('collegeId');
     $college = $this->college->getCollegeById($id);
     return response()->json(['collegeId' => $college->id, 'collegeName' => $college->name, 'collegeDetail' => $college->detail, 'collegeImage' => $college->image, 'collegeSource' => $college->source, 'collegeStreet1' => $college->street1, 'collegeStreet2' => $college->street2, 'collegeCity' => $college->city, 'collegeState' => $college->state, 'collegePincode' => $college->pincode, 'token' => csrf_token(), 'action' => url('favourite/store')]);
     //        return view('college.college_modal')->with(compact('college'));
 }