/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     View::share('title', 'Oldalak');
     $this->layout->content = View::make('admin.page.index')->with('pages', Page::all(['id', 'parent', 'menu', 'title']));
 }