@extends('layouts.dashboard') @section('page_title', 'Billing & Invoices') @section('dashboard_content')

Invoice History

All amounts in PKR
@forelse($invoices ?? [] as $invoice) @empty @endforelse
Invoice # Related Order Amount Status Due Date Action
{{ $invoice->invoice_number }}
#{{ $invoice->order->order_number ?? 'N/A' }}
{{ $invoice->order->service->name ?? 'Service' }}
{{ number_format($invoice->amount) }} {{ $invoice->status }} {{ $invoice->due_date ? $invoice->due_date->format('M d, Y') : 'N/A' }} Download PDF
No invoices found.
@if($invoices->hasPages())
{{ $invoices->links() }}
@endif @endsection