{{ $data->hotel->name }}

Reservation Bill

Reservation Code: {{ $data->code }}
Guest Name: {{ $data->guest_name }}
Check-in: {{ \Carbon\Carbon::parse($data->planning_checkin)->format('d M Y') }}
Check-out: {{ \Carbon\Carbon::parse($data->planning_checkout)->format('d M Y') }}
Payment Method: {{ ucfirst($data->payment_method) }}
Status: {{ ucfirst($data->payment_status) }}

@foreach ($data->reservation_details as $detail) @endforeach
Room Duration Price DPP Tax (PPN) Total
{{ $detail->room_type->name }} {{ $detail->stay_duration }} malam Rp {{ number_format($detail->price, 0, ',', '.') }} Rp {{ number_format($detail->dpp, 0, ',', '.') }} Rp {{ number_format($detail->tax, 0, ',', '.') }} Rp {{ number_format($detail->total_price, 0, ',', '.') }}
Subtotal Rp {{ number_format($data->total_price, 0, ',', '.') }}
Discount Rp {{ number_format($data->discount, 0, ',', '.') }}
Service Fee Rp {{ number_format($data->service_fee, 0, ',', '.') }}
Additional Fee Rp {{ number_format($data->additional_fee, 0, ',', '.') }}
Grand Total Rp {{ number_format($data->grand_total, 0, ',', '.') }}

Terima kasih telah menginap di {{ $data->hotel->name }}.