/** * Show the form for editing the specified resource. * * @param int $id * @return \Illuminate\Http\Response */ public function edit($id) { $banners = Banner::findOrFail($id); // Select Resource $pages = \App\Page::lists('title', 'id'); return view('banners.edit')->with('banners', $banners)->with('pages', $pages); }
/** * Show the form for editing the specified resource. * * @param int $id * @return Response */ public function edit($id) { $content_areas = ContentArea::lists('name', 'id'); $pages = Page::lists('name', 'id'); $article = Article::findOrFail($id); return view('articles.edit', compact('article', 'pages', 'content_areas')); }
/** * Show the form for editing the specified resource. * * @param int $id * @return \Illuminate\Http\Response */ public function edit(Image $image) { // $page_list = Page::lists('page_number', 'id'); return view('images.edit', compact('image', 'page_list')); }
/** * Show the form for editing the specified resource. * * @param int $id * @return Response */ public function edit($id) { $pagesAll = Page::all(); $articlesAll = Article::all(); $templatesAll = Template::all(); $contentAreasAll = ContentArea::all(); $content_areas = ContentArea::lists('name', 'id'); $pages = Page::lists('name', 'id'); $article = Article::findOrFail($id); return view('site.edit', compact('article', 'pages', 'content_areas', 'pagesAll', 'articlesAll', 'templatesAll', 'contentAreasAll')); }