@extends('admin.layout.master') @section('title', 'Room Clean Status') @section('custom_style') @endsection @section('content') @include('flash-message')
| Floor | Room | Room Type |
HK Status
|
Modify |
|---|---|---|---|---|
| {{ $room->floor->floor_no }} | {{ $room->room_number }} | {{ $room->roomType ? $room->roomType->name : null }} | {{ Form::select('hk_room_status[]', ['1' => 'Ready', '2' => 'In Used', '3' => 'Dirty', '4' => 'Out Of Order'], $room->hk_room_status, ['class' => 'form-control showSelected', 'data-id' => $room->id, 'id' => 'hk_room_status' . $room->id, 'required', 'placeholder' => 'Select Room Status']) }} {{ Form::hidden('reason[]', null, ['class' => 'form-control out_of_order_reason', 'id' => 'out_of_order_reason'.$room->id,'placeholder'=>'Type Reason']) }} | {{-- If Room Not Dirty --}} |