Exemplo n.º 1
0
 /**
  * Remove the specified page from storage.
  *
  * @param  int $id
  *
  * @return Response
  */
 public function destroy($id)
 {
     Page::destroy($id);
     return redirect()->route('admin.pages.index');
 }