Пример #1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy(Gallery $gallery)
 {
     $gallery->delete();
     \Session::flash('message', 'Галлерея удалена');
     return redirect()->route('admin.gallery.index');
 }