コード例 #1
0
 /**
  * Show the form for editing the specified gracetime.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $gracetime = GraceTime::find($id);
     return View::make('grace_times.edit', compact('gracetime'));
 }