/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy(StaticPage $page)
 {
     $page->delete();
     Session::flash('message', 'Страница удалена');
     return redirect()->route('admin.page.index');
 }