@extends('layouts.nav') @section('title') Rooms @endsection @section('content')

Property Rooms

Create Room
@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf

@foreach ($rooms as $room) @endforeach
Floor Room Space Tenant Action
Floor Room Space Tenant Action
{{ $room->Floor }} {{ $room->Room }} {{ $room->Space }} {{ $room->Tenant }}
@endsection