@extends('layouts.app') @section('title', 'Bills') @section('content')
| Invoice # | Date | Customer | Total | Payment | Actions |
|---|---|---|---|---|---|
| {{ $inv->invoice_number }} | {{ $inv->invoice_date->format('d M Y') }} | {{ $inv->customer?->name ?? 'Walk-in' }} | {{ number_format($inv->total, 2) }} | {{ $inv->payment_type }} | View |
| No bills yet. Create quick bill. | |||||