Пример #1
0
 /**
  * Show the form for editing the specified resource.
  *
  * @param int $id
  *
  * @return \Illuminate\View\View
  */
 public function edit($id)
 {
     $work = $this->works->find($id);
     return view('backend.works.edit', compact('work'));
 }