コード例 #1
0
 /**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function edit($id)
 {
     $cropList = Crop::lists('name', 'id')->all();
     $upazilaList = Upazila::lists('name', 'id')->all();
     $crop = FarmerCrop::findOrFail($id);
     return view('Farmer.FarmerCropEdit', compact('crop', 'cropList', 'upazilaList'));
 }