Purchase Order

{{ $purchaseOrder->supplier->name }}

Order Date
{{ \Carbon\Carbon::parse($purchaseOrder->order_date)->format('d M Y') }}
#{{ $purchaseOrder->po_code }}
Warehouse
{{ $purchaseOrder->warehouse->name }}
Status
{{ $purchaseOrder->status }}
Ordered Products
    @foreach($purchaseOrder->items as $item)
  • {{ $item->product->name ?? 'Unknown Item' }} {{ $item->productVariation->variationType->name ?? 'Default' }}
    {{ floatval($item->qty) }} ordered
    {{ $item->product->code }}
  • @endforeach
@if($purchaseOrder->note)
Additional Instructions
{{ $purchaseOrder->note }}
@endif

Please prepare the items as per the order above.

@if(isset($settings) && $settings->shop_name)
{{ $settings->shop_name }}
@if($settings->shop_phone)
{{ $settings->shop_phone }}
@endif

Powered by {{ env('APP_NAME', 'POS-LINK') }}

@endif