Ejemplo n.º 1
0
 /**
  * Show update form.
  *
  * @param int $id
  *
  * @return Response
  */
 public function edit($id)
 {
     $image = Image::with(['tags'])->findOrFail($id);
     $tags = Tag::orderBy('title', 'asc')->lists('title', 'id');
     return view('image/tag/edit', ['pageTitle' => $this->pageTitle([trans('image.tag.edit.page-title', ['title' => $image->title])]), 'image' => $image, 'tags' => $tags]);
 }