@extends('layouts/contentNavbarLayout') @section('title', 'Rooms') @section('vendor-style') @endsection @section('content')
| # | Room | Floor | Beds / Capacity | Actions |
|---|---|---|---|---|
| {{ $room->id }} | {{ $room->name }} | {{ $room->floor->name }} | {{ $room->beds_count }}{{ $room->capacity > 0 ? ' / ' . $room->capacity : '' }} | View Edit |
| No rooms yet. Add a room (create a floor first if needed). | ||||