示例#1
0
 /**
  * Show the form for editing the specified skema.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $skema = Skema::find($id);
     return View::make('skemas.edit', compact('skema'));
 }