@extends('layouts.app') @section('content')

Record Payment for Purchase #{{ $purchase->invoice_no }}

Purchase Summary

Supplier: {{ $purchase->supplier->name }}

Grand Total: KES {{ number_format($purchase->grand_total, 2) }}

Paid Amount: KES {{ number_format($purchase->paid_amount, 2) }}

Balance Due: KES {{ number_format($purchase->grand_total - $purchase->paid_amount, 2) }}

@csrf
KES
Maximum: KES {{ number_format($purchase->grand_total - $purchase->paid_amount, 2) }}
Cancel
@endsection