@extends('layouts.app') @section('title', $title ?? 'Invoices Export') @section('content')
| Invoice Number | Customer | Payment Plan | Amount | Status | Payment Status | Date |
|---|---|---|---|---|---|---|
| {{ $invoice->invoice_number }} | {{ $invoice->customer->fullname ?? 'N/A' }} | {{ $invoice->payment_plan }} | {{ number_format($invoice->amount, 2) }} | {{ $invoice->status }} | {{ $invoice->payment_status }} | {{ $invoice->created_at->format('Y-m-d') }} |