Interior Villa BD
Dhaka, Bangladesh
PURCHASE ORDER
{{ $po->code }}
Date: {{ $po->order_date->format('d M Y') }}

Vendor

{{ $po->vendor->name }}

{{ $po->vendor->phone }}

@if($po->vendor->address)

{{ $po->vendor->address }}

@endif
@if($po->project)

Project

{{ $po->project->name }}

{{ $po->project->code }}

@endif
@foreach($po->items as $i => $item) @endforeach
# Description Unit Qty Rate Total
{{ $i + 1 }} {{ $item->description }} {{ $item->unit }} {{ $item->quantity_ordered }} ৳{{ number_format($item->unit_rate, 2) }} ৳{{ number_format($item->total, 2) }}
Subtotal: ৳{{ number_format($po->subtotal, 2) }}
@if($po->vat_amount > 0)
VAT: ৳{{ number_format($po->vat_amount, 2) }}
@endif @if($po->other_charges > 0)
Other Charges: ৳{{ number_format($po->other_charges, 2) }}
@endif
Grand Total: ৳{{ number_format($po->grand_total, 2) }}