@extends('mail.master') @section('title') Sales Invoice @endsection @section('contents') @php $billing = $order->address('billing'); $shipping = $order->address('shipping'); @endphp
Bill To:
Name : {{ $billing->first_name . ' ' . $billing->last_name }}
Email : {{ $billing->email }}
Phone No. : {{ $billing->phone_number }}
Address : {{ $billing->address_1 }},
{{ $billing->address_2 }},
ON {{ $billing->postal_code }}
Comments : {{ $order->comments }}
Ship To:
Name : {{ $shipping->first_name . ' ' . $shipping->last_name }}
Email : {{ $shipping->email }}
Phone No. : {{ $shipping->phone_number }}
Address : {{ $shipping->address_1 }},
{{ $shipping->address_2 }},
ON {{ $shipping->postal_code }}
{{--
Order No Order Date Sales Person Customer PO No Confirmation No Delivery Mode Delivery Date
#{{ $order->id }} {{ $order->created_at->format('M, d, Y') }} Montie - - {{ $order->order_type }} {{ $order->order_date }}
--}} @foreach ($order->items as $item) @endforeach
Qty Product Brand Model Serial No Price Total Tax Grand Total
{{ $item->qty }} {{ $item->name }} {{ $item->brand?->name }} {{ $item->sku }} {{ $item->upc_code }} ${{ $item->price }} ${{ $item->sub_total }} ${{ $item->tax_amount }} ${{ $item->grand_total }}
Amount Paid By
${{ $order->grand_total }} Master Card
{{-- --}} {{-- --}}
Credits Issued : $0.00
Restocking Charges : $0.00
Environmental Fee: $0.00
Sales Sub Total: ${{ $order->sub_total }}
Sub Total: ${{ $order->sub_total }}
GST # : 802845461RT0001
GST/ HST : 13.000% ${{ $order->tax_total }}
PST : 00.000% $0.00
Paid : ${{ $order->grand_total }}
Balance :
After Returns and Restocking Charges
$0.00
Total Returns : $0.00
Grand Total: ${{ $order->grand_total }}
@endsection