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

Property Floors

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

@foreach ($floors as $floor) @endforeach
Floor Number Space Rooms Action
Floor Number Space Rooms Action
{{ $floor->FloorNumber }} {{ $floor->Space }} {{ $floor->Rooms }}
@endsection