RECEIPT
@if($receipt->hotel->logo)
 }})
@else
@endif
{{ $receipt->hotel->name }}
@if($receipt->hotel->address)
{{ $receipt->hotel->address }}
@endif
@if($receipt->hotel->city)
{{ $receipt->hotel->city }}, {{ $receipt->hotel->state }}
@endif
Payment Receipt
{{ $receipt->receipt_number }}
{{ $receipt->created_at->format('d M Y, H:i') }}
@if($receipt->hotel->phone) {{ $receipt->hotel->phone }}@endif
@if($receipt->hotel->email) {{ $receipt->hotel->email }}@endif
@if($receipt->hotel->website) {{ $receipt->hotel->website }}@endif
Billed To
{{ $receipt->guest_name }}
@if($receipt->guest_phone)
{{ $receipt->guest_phone }}
@endif
@if($receipt->booking->guest->email)
{{ $receipt->booking->guest->email }}
@endif
Booking Details
Ref: {{ $receipt->booking->booking_reference }}
Room: {{ $receipt->booking->room->room_number }} — {{ $receipt->booking->room->roomType->name }}
Check-in: {{ $receipt->booking->check_in_date->format('d M Y') }}
Check-out: {{ $receipt->booking->check_out_date->format('d M Y') }}
Duration: {{ $receipt->booking->nights }} night{{ $receipt->booking->nights > 1?'s':'' }}
Charges
| Description |
Qty |
Amount |
| Room {{ $receipt->booking->room->room_number }} ({{ $receipt->booking->room->roomType->name }}) |
{{ $receipt->booking->nights }} night{{ $receipt->booking->nights > 1?'s':'' }} |
₦{{ number_format($receipt->booking->room->roomType->base_price * $receipt->booking->nights, 2) }} |
@foreach($receipt->booking->extras as $extra)
| {{ $extra->item_name }} |
{{ $extra->quantity }} |
₦{{ number_format($extra->total, 2) }} |
@endforeach
@if($receipt->invoice->discount > 0)
| Discount | -₦{{ number_format($receipt->invoice->discount, 2) }} |
@endif
@if($receipt->invoice->tax > 0)
| Tax | ₦{{ number_format($receipt->invoice->tax, 2) }} |
@endif
Payment Method
@if($receipt->payment_method==='cash') Cash
@elseif($receipt->payment_method==='transfer') Bank Transfer
@elseif($receipt->payment_method==='pos') POS
@else Online @endif
Total Amount Paid
₦{{ number_format($receipt->total_amount, 2) }}
{{ \App\Models\PlatformSetting::get('receipt_footer_message', 'Thank you for your patronage. We look forward to seeing you again!') }}
@if(\App\Models\PlatformSetting::get('receipt_show_powered_by', '1'))
Powered by Hotel Management Board
@endif
@if($receipt->printed_at)
Printed on {{ $receipt->printed_at->format('d M Y H:i') }} by {{ $receipt->issuedBy->name }}
@endif
@if($receipt->whatsapp_sent)
WhatsApp sent on {{ $receipt->whatsapp_sent_at->format('d M Y H:i') }}
@endif