@extends('layouts.app') @section('title', 'Bills') @section('content')

Bills

Quick Bill
@forelse($invoices as $inv) @empty @endforelse
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.
@if($invoices->hasPages())
{{ $invoices->links() }}
@endif
@endsection