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