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