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