예제 #1
0
 /**
  * Show the form for editing the specified autoprocess.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $autoprocess = Autoprocess::find($id);
     return View::make('autoprocesses.edit', compact('autoprocess'));
 }