Exemplo n.º 1
0
 /**
  * Show the form for editing the specified watch.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $watch = Watch::find($id);
     return View::make('watches.edit', compact('watch'));
 }