/** * Show the form for editing the specified resource. * * @param int $id * @return Response */ public function edit($id) { $lots = Lot::lists('number', 'id'); $control = Control::find($id); $measureTypes = MeasureType::all(); return View::make('control.edit')->with('control', $control)->with('lots', $lots)->with('measureTypes', $measureTypes); }
/** * Show the form for editing the specified resource. * * @param int $id * @return Response */ public function edit($id) { //Get the testtype $testtype = TestType::find($id); $measures = Measure::all(); $measuretype = MeasureType::all()->sortBy('id'); $specimentypes = SpecimenType::orderBy('name')->get(); $testcategory = TestCategory::all(); $organisms = Organism::orderBy('name')->get(); //Open the Edit View and pass to it the $testtype return View::make('testtype.edit')->with('testtype', $testtype)->with('testcategory', $testcategory)->with('measures', $measures)->with('measuretype', $measuretype)->with('specimentypes', $specimentypes)->with('organisms', $organisms); }