@extends('admin.layout.master') @section('title', 'Bed Maintenance') @section('content') @include('flash-message')
| Floor | Room |
HK Status
|
Indent Request | Modify |
|---|---|---|---|---|
| {{ $data->room->floor->floor_no }} | {{$data->room->room_number }} | {{ Form::select('hk_room_status[]', ['1' => 'Ready', '2' => 'In Used', '3' => 'Dirty', '4' => 'Out Of order'], $data->room->hk_room_status, ['class' => 'form-control showSelected', 'data-id'=>$data->id, 'id' =>'hk_room_status'. $data->id, 'required', 'placeholder' => 'Select Room Status']) }} | @if($data->indent ==null) @else @if($data->indent->status ==1) @elseif($data->indent->status ==2) @elseif($data->indent->status ==3) @else @endif @endif | {{-- @if($room->room_clean_status == 3 && $room->hk_room_status == 1) Accept @endif --}} {{-- If Room Not Dirty --}} @if($data->room->room_clean_status !== 3 && $data->room->hk_room_status !== 3) @else {{-- --}} @endif |