@extends('layouts.app') @section('title', 'Invoices') @section('content')
| ID | Booking | Branch | Created By | Date | Actions |
|---|---|---|---|---|---|
| #{{ $invoice->id }} | {{ $invoice->booking->id ?? 'N/A' }} | {{ $invoice->branch->name ?? 'N/A' }} | {{ $invoice->user->name ?? 'N/A' }} | {{ $invoice->created_at->format('Y-m-d') }} | |
| No invoices yet. Click "Add Invoice" to create a new one. | |||||