@extends('layouts.app') @section('title', 'Room ' . $room->room_number) @section('breadcrumbs') @endsection @section('content')
{{ $room->roomType->name ?? 'N/A' }} - {{ $room->floor->name ?? 'N/A' }}
No images available
Bed Type
{{ $room->bed_type ?? 'N/A' }}
Max Occupancy
{{ $room->max_occupancy ?? 'N/A' }} guests
Rate per Night
${{ number_format($room->rate_per_night ?? 0, 2) }}
Current Status
Description
{{ $room->description }}
Amenities
| Reservation ID | Guest | Check-in | Check-out | Status |
|---|---|---|---|---|
| #{{ $reservation->id }} | {{ $reservation->guest_name ?? 'N/A' }} | {{ $reservation->check_in_date->format('M d, Y') ?? 'N/A' }} | {{ $reservation->check_out_date->format('M d, Y') ?? 'N/A' }} | @switch($reservation->status) @case('confirmed') Confirmed @break @case('checked_in') Checked In @break @case('checked_out') Checked Out @break @case('cancelled') Cancelled @break @endswitch |
Guest Name
{{ $currentReservation->guest_name ?? 'N/A' }}
{{ $currentReservation->email ?? 'N/A' }}
Phone
{{ $currentReservation->phone ?? 'N/A' }}
Check-out Date
{{ $currentReservation->check_out_date->format('M d, Y') ?? 'N/A' }}