@extends('admin.layout.master') @section('title', 'Room Clean Status') @section('custom_style') @endsection @section('content') @include('flash-message')

{{__('obs.house_keeping_room_status')}}

@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
@foreach ($rooms as $room) @endforeach
{{__('obs.floor')}} {{__('obs.room')}} {{__('obs.room')}} {{__('obs.type')}}
{{__('obs.hk_status')}}
  {{__('obs.modify')}}
{{ $room->floor->floor_no }}   {{ $room->room_number }} {{ $room->roomType ? $room->roomType->name : null }} {{-- If Room Not Dirty --}}  
@endsection @section('script') @endsection