@extends('admin.layouts.app') @section('title', 'Purchase Due') @section('page_title', 'Purchase Due List') @section('content')
| ID | Invoice No | Supplier | Date | Total | Paid | Due | Actions |
|---|---|---|---|---|---|---|---|
| {{ $purchase->id }} | {{ $purchase->invoice_no }} | {{ $purchase->supplier->name ?? 'N/A' }} | {{ date('d-m-Y', strtotime($purchase->date)) }} | {{ number_format($purchase->total, 2) }} | {{ number_format($purchase->paid, 2) }} | {{ number_format($purchase->due, 2) }} | |
| No due purchases found | |||||||