@extends('layoutfrontend')
@section('title', 'Cari Booking')
@section('css')
@endsection
@section('content')
ID: {{ @$booking->kode_booking }}
Check In: {{ @$booking->start_date ? date_format(@$booking->start_date, "d/m/Y") : ""}} -
Check Out: {{ @$booking->end_date ? date_format(@$booking->end_date, "d/m/Y") : ""}}
Guest Information
Name:
{{@$booking->nama}}
ID Number:
{{config("custom.jenis_identitas")[@$booking->jns_identitas]}} - {{@$booking->no_identitas}}
Email:
{{@$booking->email}}
Phone Number:
{{@$booking->telp}}
Address:
{{@$booking->alamat}}
City:
{{@$booking->kota}}, {{@$booking->propinsi}}
Country:
{{@$booking->negara}}
Postcode:
{{@$booking->kode_pos}}
Status & Payment
Status:
{{config('custom.status_booking')[@$booking->tipe_booking]}}
Payment Type:
{{config('custom.jenis_pembayaran_eng')[@$booking->jns_pembayaran]}}
Booked Room(s):
{{implode(", ", @$booking->jns_kamar)}}
@if (@$booking->diskon)
Discount:
{{@$booking->diskon}} %
@endif
Grandtotal:
Rp {{ribuan(@$booking->total_biaya)}}
@endsection
@section('js')
@endsection