@include('global.header-links')
|
Date Added
|
{{$orders['order']['created_at']->format('d/m/Y')}} |
|
Payment Method
|
Online
|
|
Shipping Method
|
Flat Shipping Rate |
|
Customer
|
|
|
Email
|
{{$orders['order']['user']['email']}} |
|
Phone
|
{{$orders['order']['user']['profile']['phone'] ?? 'Not Provided'}} |
| Product | Variation | Qty | Unit Price | Total |
|---|---|---|---|---|
|
{{$orderDetail['product']['name']}}
{{$orderDetail['product']['category']['name']}}
|
@foreach ($orderDetail['variations'] as $variation)
{{ucfirst($variation->attribute->name)}} : {{ucfirst($variation->name)}} @endforeach |
{{$orderDetail->qty}} | ${{$orderDetail['sale_price']}} | ${{ $orderDetail['sale_price'] * $orderDetail['qty'] }}.00 |
| Subtotal | {{$orders['subTotalAmount']}}.00 | |||
| Sales Tax (0%) | {{$orders['salesTax']}}.00 | |||
| Shipping Rate | {{$orders['shipping']}} | |||
| Grand Total | {{$orders['totalAmount']}}.00 | |||