@extends('admin.layouts.master') @section('title', 'Booking Details') @section('parent_title', 'Bookings') @section('content')
Exit

Booking Overview

Reservation Details
Booking ID #BK-{{ str_pad($booking->id, 6, '0', STR_PAD_LEFT) }}
Status {{ $booking->booking_status }}
Check-In {{ $booking->check_in_date->format('D, d M Y') }}
Check-Out {{ $booking->check_out_date->format('D, d M Y') }}
Room {{ $booking->room->room_name }}
Room Type {{ $booking->room->room_type }}
Guests {{ $booking->total_guests }} Personen
Total Amount INR {{ number_format($booking->total_amount, 2) }}
Payment History
@if($booking->payment)
Transaction ID Method Amount Status Date
{{ $booking->payment->transaction_id }} {{ $booking->payment->payment_method }} INR {{ number_format($booking->payment->amount_paid, 2) }} {{ $booking->payment->payment_status }} {{ $booking->payment->payment_date->format('d M Y, h:i A') }}
@else

No Payment Recorded!

This booking does not have any recorded payment yet.
@endif

Customer Profile

{{ substr($booking->user->full_name, 0, 1) }}
{{ $booking->user->full_name }}
Registered Member
Email
Phone
{{ $booking->user->phone_number }}
@if($booking->user->comment)
Special Request
"{{ $booking->user->comment }}"
@endif
@endsection