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

Room Specification

Room Name: {{ $room->room_name }}
Room Type: {{ $room->room_type }}
Price Per Night: INR {{ number_format($room->price_per_night, 2) }}
Max Guests: {{ $room->max_guests }} Persons
Current Status: {{ $room->status }}

Room Description

{{ $room->description ?? 'No detailed description provided for this room. This room is well-maintained and provides a comfortable stay for guests.' }}

Quick Summary

{{ substr($room->room_name, 0, 1) }}

{{ $room->room_name }}

{{ $room->room_type }}
Features
Free WiFi
Air Conditioning
Room Service
@endsection