@extends('admin.layouts.app') @section('title', 'Invoices') @section('content')
Create and manage guest invoices
| Invoice # | Guest | Amount | Paid | Balance | Date | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $invoice->invoice_number }} | {{ $invoice->guest_name }} | ₦{{ number_format($invoice->total_amount, 0) }} | ₦{{ number_format($invoice->amount_paid, 0) }} | ₦{{ number_format($invoice->balance, 0) }} | {{ $invoice->invoice_date->format('M d, Y') }} | {{ ucfirst($invoice->status) }} | |
| No invoices found. | |||||||