{{ $branch?->address ?? $restaurant?->address }}
@endif @if($restaurant?->company_phone || $restaurant?->phone)Contact: {{ $restaurant?->company_phone ?? $restaurant?->phone }}
@endif @if($restaurant?->company_email || $restaurant?->email)Email: {{ $restaurant?->company_email ?? $restaurant?->email }}
@endif| Agreement Number | {{ $agreement->agreement_number }} |
| Agreement Date | {{ $agreement->agreement_date->format('d M Y') }} |
| Booking / Reservation # | {{ $agreement->reservation->reservation_number ?? '—' }} |
| Guest / Tenant | {{ $agreement->reservation->primaryGuest?->full_name ?? '—' }} |
| Check-in Date | {{ $agreement->reservation->check_in_date?->format('d M Y') ?? '—' }} |
| Check-out Date | {{ $agreement->reservation->check_out_date?->format('d M Y') ?? '—' }} |
| Total Amount | {{ currency_format($agreement->reservation->total_amount ?? 0) }} |
| Advance Paid | {{ currency_format($agreement->reservation->advance_paid ?? 0) }} |
| Security Deposit | {{ currency_format($agreement->reservation->security_deposit ?? 0) }} |
| Notes | {{ $agreement->notes }} |
| Agreement Type | {{ $agreement->type->label() }} |
| Prepared by | {{ $agreement->createdBy?->name ?? '—' }} |