Пример #1
0
 /**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function edit($id)
 {
     $creator = Creator::find($id);
     $creators = Creator::all();
     return view('Admin.creators.edit', compact('creator', 'creators'));
 }