コード例 #1
0
ファイル: TagsController.php プロジェクト: sidis405/uniamo
 /**
  * Show the form for editing the specified Tag.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function edit($id, TagsRepo $tags_repo)
 {
     $tag = $tags_repo->getById($id);
     return view('admin.tags.edit', compact('tag'));
 }