@extends('admin.layouts.master') @section('title', 'Booking Details') @section('parent_title', 'Bookings') @section('content')
| 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) }} |
| 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') }} |