@extends('layouts.app') @section('page-title', 'Invoices') @push('styles') @endpush @section('content')
| Invoice # | Customer | Date | Due Date | Amount | Status | Actions |
|---|---|---|---|---|---|---|
| #{{ $invoice->id }} | {{ $invoice->customer->name ?? '—' }} | {{ $invoice->date->format('M d, Y') }} | @if($invoice->due_date) @if($isOverdue) @endif {{ $invoice->due_date->format('M d, Y') }} @else — @endif | ৳{{ number_format($invoice->total, 2) }} | @switch($invoice->status) @case('paid') Paid @break @case('pending') Pending @break @case('partial') Partial @break @case('cancelled') Cancelled @break @endswitch | |
|
No invoices found. + Create Invoice |
||||||
No invoices found.
+ Create Invoice