@extends('layouts.app') @section('title', 'Invoices') @section('content')
| Invoice Number | Customer | Invoice Date | Due Date | Total Amount | Status | Created By | Actions |
|---|---|---|---|---|---|---|---|
| {{ $invoice->invoice_number }} | {{ $invoice->customer->customer_account ?? 'N/A' }} | {{ \Carbon\Carbon::parse($invoice->invoice_date)->format('M d, Y') }} | {{ $invoice->due_date ? \Carbon\Carbon::parse($invoice->due_date)->format('M d, Y') : 'N/A' }} | ${{ number_format($invoice->total, 2) }} | {{ ucfirst($invoice->status) }} | {{ $invoice->creator->name ?? 'N/A' }} | |
|
No invoices found Create Your First Invoice |
|||||||