@extends('mail.master') @section('title') Sales Invoice @endsection @section('contents') @php $billing = $order->address('billing'); $shipping = $order->address('shipping'); @endphp
|
|
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 }} |
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 }} |
|
|