RECEIPT
@if($hotel->logo) @endif
{{ Str::limit(strtoupper($hotel->name), 20) }}
{{ Str::limit($hotel->address ?? '', 25) }}
Tel: {{ $hotel->phone ?? '' }}
INVOICE / RECEIPT
INVOICE #: {{ $receipt->receipt_number }}
DATE: {{ $receipt->created_at->format('d/m/Y') }}
BILL TO:
{{ Str::limit($receipt->guest_name, 20) }}
@if($receipt->guest_phone)
{{ $receipt->guest_phone }}
@endif
ITEM AMOUNT
Room x {{ $receipt->booking->nights ?? 0 }} nights ₦{{ number_format($receipt->total_amount, 0) }}
SUBTOTAL ₦{{ number_format($receipt->total_amount, 0) }}
PAID -₦{{ number_format($receipt->paid_amount, 0) }}
@if($receipt->balance > 0)
BALANCE DUE: ₦{{ number_format($receipt->balance, 0) }}
@else
PAID IN FULL
@endif
METHOD: {{ strtoupper($receipt->payment_method) }}
@if($receipt->guest_phone) @endif