/** * Remove the specified hotel from storage. * * @param int $id * @return Response */ public function destroy($id) { Hotel::destroy($id); return Redirect::route('hotels.index'); }