コード例 #1
0
ファイル: SingerController.php プロジェクト: pumba3211/PHP
 /**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $singer = \App\Models\Singer::find($id);
     return view('singers.edit', compact('singer'));
 }
コード例 #2
0
ファイル: SongController.php プロジェクト: pumba3211/PHP
 /**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $song = \App\Models\Song::find($id);
     $singers = \App\Models\Singer::all();
     return view('songs.edit', compact('song', 'singers'));
 }