@extends('guest.layouts.auth') @section('title', 'Invoices & Receipts | Kevron Suites & Apartments') @section('dashboard_content')

Invoices & Receipts

Securely explore and download en-suite lodging invoices and transaction receipts.

Invoice settlements, security deposits, and transaction confirmations are managed in accordance with our Payment Policy. View Payment Policy
@if($invoices->isEmpty())

No Invoices Found

There are no en-suite invoices currently issued to this account.

@else
@foreach($invoices as $invoice) @endforeach
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
@if($invoices->hasPages())
{{ $invoices->links() }}
@endif
@endif
@endsection