Пример #1
0
 /**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $lot = Lot::find($id);
     $instruments = Instrument::lists('name', 'id');
     return View::make('lot.edit')->with('lot', $lot)->with('instruments', $instruments);
 }