當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Order::products方法代碼示例

本文整理匯總了PHP中app\Order::products方法的典型用法代碼示例。如果您正苦於以下問題:PHP Order::products方法的具體用法?PHP Order::products怎麽用?PHP Order::products使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在app\Order的用法示例。


在下文中一共展示了Order::products方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: Order

 /** @test */
 function an_order_consists_of_products()
 {
     $order = new Order();
     $product = new Product('Fallout 4', 59);
     $product2 = new Product('pillowcase', 7);
     $order->add($product);
     $order->add($product2);
     $this->assertCount(2, $order->products());
 }
開發者ID:pranayaryal,項目名稱:phptesting,代碼行數:10,代碼來源:OrderTest.php

示例2: finalizarCompra

 public function finalizarCompra(Request $request)
 {
     $order = new Order();
     $order->payment_method = 'visa';
     $order->order_date = $now = date('Y-m-d H:i:s', strtotime('now'));
     $order->source_name = $request['source_name'];
     $order->source_address = $request['source_address'];
     $order->source_email = $request['source_email'];
     $order->amount = $request['amount'];
     $order->save();
     $order->products()->attach($request->session()->get('Product'));
     $request->session()->flush();
     return view('orders.finalizar_compra', ['personal_info' => $request, 'order_date' => $now, 'order_id' => $order->id]);
 }
開發者ID:luizpcam,項目名稱:cartSimulation,代碼行數:14,代碼來源:Order.php

示例3: destroy

 /**
  * Remove the specified resource from storage.
  * order product
  * @param  int  $id
  * @return Response
  */
 public function destroy(Order $order, Product $product)
 {
     DB::transaction(function () use($product, $order) {
         if ($order->status != 1) {
             $product->update(['quantity' => $product->quantity + $order->products()->find($product->id)->pivot->quantity]);
         }
         $order->products()->detach($product->id);
     });
     return redirect(route('orders.edit', $order->id));
 }
開發者ID:Tisho84,項目名稱:laravel-work,代碼行數:16,代碼來源:OrderProductsController.php


注:本文中的app\Order::products方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。