@extends('guest.layouts.auth') @section('title', 'Invoices & Receipts | Kevron Suites & Apartments') @section('dashboard_content')
Securely explore and download en-suite lodging invoices and transaction receipts.
There are no en-suite invoices currently issued to this account.
| Invoice Number | Stay Reference | Amount | Status | Due Date | Actions |
|---|---|---|---|---|---|
| {{ $invoice->invoice_number }} | {{ $invoice->booking->booking_reference }} | ₦{{ number_format($invoice->amount, 2) }} | @php $invoiceBadge = 'bg-slate-50 border-slate-200 text-slate-800'; if($invoice->status === 'paid') $invoiceBadge = 'bg-emerald-50 border-emerald-200 text-emerald-800'; elseif($invoice->status === 'unpaid') $invoiceBadge = 'bg-red-50 border-red-200 text-red-800'; @endphp {{ $invoice->status }} | {{ Carbon\Carbon::parse($invoice->due_date)->format('M d, Y') }} | Download Invoice |