@extends('layouts.app') @section('title', 'Rooms Management') @section('breadcrumbs') @endsection @section('content')
Manage your hotel rooms inventory
| Room No | Floor | Type | Bed Type | Rate/Night | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $room->room_number }} | {{ $room->floor->name ?? 'N/A' }} | {{ $room->roomType->name ?? 'N/A' }} | {{ $room->bed_type ?? 'N/A' }} | ${{ number_format($room->rate_per_night ?? 0, 2) }} | @switch($room->status) @case('available') Available @break @case('occupied') Occupied @break @case('maintenance') Maintenance @break @case('reserved') Reserved @break @case('cleaning') Cleaning @break @default {{ $room->status }} @endswitch | |
|
No rooms found Add your first room to get started |
||||||