@extends('admin.layouts.master') @section('page_title', 'Manage Rooms') @section('content')

All Available Rooms Manage and view your complete room inventory

@forelse($rooms as $room) @empty @endforelse
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.
@if($rooms->hasPages())
Showing {{ $rooms->firstItem() }} to {{ $rooms->lastItem() }} of {{ $rooms->total() }} entries
{{ $rooms->links() }}
@endif
@endsection