{{-- resources/views/invoicing/index.blade.php --}} @extends('layouts.app') @section('title', 'Invoices') @section('page_title', 'Invoices') @section('page_subtitle', 'Billing and invoice management') @section('content') {{-- Stats --}}
No invoices found
Create Invoice| Invoice # | Guest / Company | Date | Due | Total | Balance | Status | |
|---|---|---|---|---|---|---|---|
| {{ $inv->invoice_number }} |
@if($inv->guest)
{{ $inv->guest->first_name }} {{ $inv->guest->last_name }}
@elseif($inv->company)
{{ $inv->company->name }}
@else
—
@endif
|
{{ $inv->invoice_date->format('d M Y') }} | {{ $inv->due_date->format('d M Y') }} | {{ $inv->currency }} {{ number_format($inv->total_amount, 2) }} | @if($inv->balance_due > 0) {{ $inv->currency }} {{ number_format($inv->balance_due, 2) }} @else Paid @endif | {{ str_replace('_', ' ', $inv->status) }} | View → |