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

Order Details

Order Details (#{{$order->order_number}})

Date Added
{{$order->date_added}}
Payment Method
Online
Shipping
{{$order->shipping_service}} - ${{$order->shipping_cost}}

Customer Details

Customer
Email
{{$order->shipping->user->email}}
Phone
{{$order->shipping->user->phone}}

Payment Address

{{$order->billing->street_address}},
{{$order->billing->city}} {{$order->billing->zipcode}},
{{$order->billing->state}},
{{$order->billing->county}}.

Shipping Address

{{$order->shipping->street_address}},
{{$order->shipping->city}} {{$order->shipping->zipcode}},
{{$order->shipping->state}},
{{$order->shipping->county}}.

Order #{{$order->order_number}}

@php $gtotal = 0; @endphp @foreach($cartList as $list) @php $gtotal += $list['total_price']; @endphp @endforeach {{-- --}} {{-- --}}
Product SKU Qty Unit Price Total
{{$list['equipment']}}
@foreach ($list['product_options'] as $variation) {{$variation['name']}} | {{$variation['value']}}
@endforeach
{{$list['sku']}} {{$list['qty']}} ${{$list['price']}} ${{$list['total_price']}}
Subtotal $264.00
VAT (0%) $0.00
Shipping Rate ${{$order->shipping_cost}}
Grand Total ${{ number_format($order->shipping_cost, 2) + number_format($gtotal, 2) }}
@include('partials.footer')
@include('global.footer-links')