Esempio n. 1
0
 /**
  * Show the form for editing the specified resource.
  *
  * @param int $id
  *
  * @return \Illuminate\View\View
  */
 public function edit($id)
 {
     $tag = $this->tags->find($id);
     return view('backend.tags.edit', compact('tag'));
 }