@extends('layouts.app') @section('title', 'All Invoices') @section('content')
| Invoice # | Customer Name | Issue Date | Due Date | Total Amount | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $invoice->formatted_invoice_number }} | {{ $invoice->customer_name }} | {{ $invoice->issue_date->format('M d, Y') }} | {{ $invoice->due_date ? $invoice->due_date->format('M d, Y') : 'N/A' }} | {{ $invoice->formatted_total }} | {{ ucfirst($invoice->status) }} | View Edit |
No invoices found. Create your first invoice
@endif