@extends('layouts/layoutMaster') @section('title', 'Hostel Floors & Rooms') @section('vendor-style') @endsection @section('content')
@csrf
@if($floors->count())
@foreach($floors as $floor)

@if($floor->rooms->count())
@foreach($floor->rooms as $room)
{{ $room->room_name }}
{{ $room->number_of_bedspace }} Beds {{ $room->status }} {{ $room->ensuite=='Yes'?'Ensuite':'No Ensuite' }}
{{ $room->aircondition=='Yes'?'AC':'No AC' }} {{ $room->water=='Yes'?'Water':'No Water' }} {{ $room->light=='Yes'?'Light':'No Light' }}
@endforeach
@else

No rooms match the filter criteria.

Please check back later or make another choice.

Show Hostels
@endif
@endforeach
{{ $floors->links() }}
@else

No active floors available for this hostel.

Please check back later or make another choice.

Show Hostels
@endif
@section('vendor-script') @endsection @endsection