Your Order has been {{ $order->status }}
Hello {{ $order->name }}
Your Order #{{ $order['order_no'] }} status has been changed.
[Order No #{{ $order['order_no'] }} ] ({{ $order->created_at }})
|
Product
|
Quantity
|
Price
|
@if($order->status=="completed")
Action
|
@endif
@foreach($order->getProducts as $product)
{{ $product->name }} {{ $product->pivot->size }} {{ $product->pivot->color }}
|
{{ $product->pivot->quantity }}
|
{{ $product->pivot->total_amount }}
|
@if($order->status=="completed")
Give Review
|
@endif
@endforeach
| Payment Method: |
|
{{ $order->paypal_transaction_id }}
|
| Sub Total: |
|
${{ $order->total_price }}
|
| Total: |
|
${{ $order->total_price }}
|
| Billing Address |
{{ $order->name }} {{ $order->email }}{{ $order->phone }} {{ $order->street }}, {{ $order->city }} , {{ $order->postal_code }}
|