Purchase Order
Date: {{ $purchaseOrder->created_at->format('F j, Y') }}
Supplier: {{ $purchaseOrder->supplier->supplier_name }}
Dear {{ $purchaseOrder->supplier->supplier_name }},
Please find attached purchase order #{{ $purchaseOrder->purchase_order_no }}.
| Description | Amount |
|---|---|
| Subtotal ({{ $purchaseOrder->items->count() }} items) | {{ config('app.currency_symbol') }}{{ number_format($subtotal, 2) }} |
| Tax ({{ $purchaseOrder->tax_rate }}%) | {{ config('app.currency_symbol') }}{{ number_format($purchaseOrder->tax_amount, 2) }} |
| Total | {{ number_format($subtotal + $purchaseOrder->tax_amount + $purchaseOrder->shipping_cost, 2) }} |
{{ $purchaseOrder->delivery_instructions }}
Best regards,
{{ auth()->user()->employee->first_name }} {{ auth()->user()->employee->last_name ?? '' }}
{{ auth()->user()->organisation->organisation_name }}
Phone: {{ auth()->user()->employee->phone ?? '' }}