Example #1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param Loot $loot
  * @return \Illuminate\Http\Response
  */
 public function destroy(Loot $loot)
 {
     $loot->delete();
     //        Session::flash('message', 'Successfully deleted the loot!');
     return redirect('loot');
 }