@include('global.header-links')
@include('partials.sidebar')
@include('partials.header')

Order Details

Order Details (#{{$orders['order']['order_number']}})

Date Added
{{$orders['order']['created_at']->format('d/m/Y')}}
Payment Method
Online
Shipping Method
Flat Shipping Rate

Customer Details

Customer
Email
{{$orders['order']['user']['email']}}
Phone
{{$orders['order']['user']['profile']['phone'] ?? 'Not Provided'}}

Payment Address

{{$orders['address']['billing_address']['street_address']}}
{{$orders['address']['billing_address']['city']}} {{$orders['address']['billing_address']['zipcode']}},
{{$orders['address']['billing_address']['state']}},
{{$orders['address']['billing_address']['county']}}.

Shipping Address

{{$orders['address']['shipping_address']['street_address']}}
{{$orders['address']['shipping_address']['city']}} {{$orders['address']['shipping_address']['zipcode']}},
{{$orders['address']['shipping_address']['state']}},
{{$orders['address']['shipping_address']['county']}}.

Order (#{{$orders['order']['order_number']}})

@foreach ($orders['orderDetails'] as $orderDetail) @endforeach
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
@include('partials.footer')
@include('global.footer-links')