/** * Remove the specified resource from storage. * * @param int $id * @return Response */ public function destroy($id) { $rentaltype = Rentaltype::find(Input::get('id')); if ($rentaltype) { $rentaltype->delete(); return redirect('Admin/rentaltypes')->with('message', 'Rentaltype deleted successfully'); } }