@extends('admin.main') @section('content')

ProcedureBack

@include('admin.msg')

@if(!empty($room_procedures)) @foreach($room_procedures as $procedure_id=>$val) @endforeach @endif
# Procedure Name Action
{{$loop->index+1}} @if(!empty($procedure)) @php $p_id = ''; @endphp @foreach($procedure as $in=>$list) @if($procedure_id == $list->id) {{$list->name}} @php $p_id = $procedure_id; @endphp @endif @endforeach @endif
@endsection