@extends('admin.layouts.app') @section('title', 'Room Details') @section('page-title', 'Room ' . $room->room_number) @section('content')
{{ $room->roomType?->name }} - Floor {{ $room->floor }}
Room Type
{{ $room->roomType?->name }}
Price/Night
₦ {{ number_format($room->roomType?->base_price ?? 0, 0) }}
Beds
{{ $room->roomType?->total_beds }}
{{ $room->description }}
{{ $booking->guest_name }}
{{ $booking->guest_phone }}
Check-in: {{ $booking->check_in_date->format('M d, Y') }}
Check-out: {{ $booking->check_out_date->format('M d, Y') }}
No active guest
@endforelse| Guest | Check-in | Check-out | Status |
|---|---|---|---|
| {{ $booking->guest_name }} | {{ $booking->check_in_date->format('M d, Y') }} | {{ $booking->check_out_date->format('M d, Y') }} | {{ ucfirst(str_replace('_', ' ', $booking->booking_status)) }} |
| No booking history | |||