@extends('admin.layouts.master') @section('page_title', 'Manage Rooms') @section('content')
| ID | Hotel / Branch | Room Detail | Price / Night | Status |
|---|---|---|---|---|
| #{{ $room->id }} |
{{ $room->room_type }}
Hotel name- {{ $room->hotel->hotel_name ?? 'Disha Vishram Sthan' }}
|
Total Rooms:- {{ $room->total_rooms }}
Available Rooms: {{ $room->available_rooms ?? 'N/A' }}
Max occupancy : {{ $room->max_occupancy ?? 'N/A' }}
|
₹{{ number_format($room->price_per_night, 2) }} | @if($room->status == 'available' || $room->status == 1) Available @else Booked/Inactive @endif |
| No rooms found in the database. Please add some rooms. | ||||