#{{ $data['purchase_order']['unique_prefix'] }}-{{ $data['purchase_order']['purchase_no'] }} {{ $data['purchase_order']['company_name'] }}
{!! $data['purchase_order']['payment_status'] !!}
Total Amount :-
{{ number_format($data['purchase_order']['net_amount'], 2) }} (Cr)
Paid Amount :-
{{ number_format($data['payment_history']['paid_amount'], 2) }} (Cr)
Pending Amount :-
{{ number_format(($data['purchase_order']['net_amount'] ?? 0) - ($data['payment_history']['paid_amount'] ?? 0), 2) }} (Cr)
Detail
Payment
Notes
History
@include('transaction.purchase.detail.detail_tab')
@include('transaction.purchase.detail.payment_tab')
@include('transaction.purchase.detail.notes_tab')
@include('transaction.purchase.detail.history_tab')