示例#1
0
 /**
  * Show the form for editing the specified resource.
  *
  * @param  int $id
  * @return \Illuminate\Http\Response
  */
 public function edit($id)
 {
     $order = $this->order->find($id);
     $options = $this->order->getOptions();
     return view('admin.orders.form', compact('order', 'options'));
 }