@extends('layouts.main-layout')
@section('title')
All Rooms | Dashboard
@endsection
@section('styles')
@endsection
@section('content')
@foreach ($rooms as $room)
@if($room->HouseKeepingId == 1)
@elseif($room->HouseKeepingId == 2)
@elseif($room->HouseKeepingId == 3 || $room->HouseKeepingId == '')
@elseif($room->HouseKeepingId == 4)
{{-- @else --}}
{{--
Room don't have any status
--}}
@endif
@endforeach
@endsection
@section('scripts')
@endsection