{{-- Author By : zulfazdliabuas@gmail.com | Date : 2026 --}} @push('styles') @endpush
@php $invoiceStatusClasses = [ 'unpaid' => 'text-bg-warning text-dark', 'paid' => 'text-bg-success', 'cancelled' => 'text-bg-secondary', ]; $statusClasses = [ 'new_request' => 'text-bg-secondary', 'approved' => 'text-bg-info', 'waiting_validation' => 'text-bg-warning', 'validated' => 'text-bg-success', 'failed' => 'text-bg-danger', 'einvoice_sent_to_customer' => 'text-bg-success', ]; @endphp
Welcome, {{ auth()->user()->name }}!

Here is a summary of your billing invoices, LHDN e-invoice requests, and latest submission activity.

Total Billing Invoices
{{ $counts['total'] }}
Paid Billing Invoices
{{ $counts['invoice_paid'] }}
Waiting for LHDN
{{ $counts['waiting'] }}
Validated
{{ $counts['validated'] }}
Latest Billing and LHDN Records
View all
@forelse($recent as $item) @empty @endforelse
Invoice No. Car Plate Location Billing Status Request Status LHDN Status Date
{{ $item->invoice_no }} {{ $item->car_plate ?? '-' }} {{ $item->site->name ?? '-' }} {{ $item->invoice_status_label }} {{ $item->status_label }} {{ $item->lhdn_status ?? 'N/A' }} {{ $item->created_at->format('d/m/Y H:i') }}
No records.