@extends('layouts.app') @section('title', 'My Invoices') @section('content')
| Invoice # | Date | Due Date | Total | Status |
|---|---|---|---|---|
| {{ $invoice->invoice_number }} | {{ $invoice->date->format('M d, Y') }} | {{ $invoice->due_date->format('M d, Y') }} | {{ format_currency($invoice->total) }} | {{ $invoice->status }} |
No invoices found
@endif