@extends('garage.layouts.app') @section('title', 'Purchase invoices') @push('styles') @include('shared.garage-purchase-order-ui-styles') @endpush @section('content')
Vendor purchase invoices — receive stock and record returns from the invoice detail page.
| Invoice # | Date | Vendor | Total | Status | Actions |
|---|---|---|---|---|---|
| {{ $inv->bill_number }} | {{ \Carbon\Carbon::parse($inv->bill_date)->format('M d, Y') }} | {{ $inv->vendor_name ?? '—' }} | {{ number_format($inv->total_amount, 2) }} | {{ ucfirst($inv->status) }} | |
| No purchase invoices found. | |||||