Exemplo n.º 1
0
 /**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function edit($id)
 {
     $page = $this->page->findOrFail($id);
     $templates = $this->getPageTemplates();
     $orderPages = $this->page->where('hidden', false)->orderBy('lft', 'asc')->get();
     return view('backend.pages.form', compact('page', 'templates', 'orderPages'));
 }