@extends('layouts.admin')
@section('title', 'Rooms')
@section('content')
Add Room
| Number | Type | Floor | Status | HK | |
@foreach($rooms as $room)| {{ $room->number }} | {{ $room->roomType?->name }} | {{ $room->floor ?? '—' }} |
| |
View Edit |
@endforeach
{{ $rooms->links() }}
@endsection