@extends('admin.layout.master') @section('title', 'Guest Service Request') @section('custom_css') @endsection @section('content')

{{ __('obs.guest_service_request_list') }} {{ $type == 2 ? __('obs.user_wise') : '' }}

{{-- @if($type == 1) --}} {{-- @endif --}}

@if($type == 1)
@endif @if($type == 2 || get_guard() == 'party')
@else @endif
@if($type == 1 && get_guard() == 'admin')
@endif
@if (get_guard() == 'admin' && $type == 1) @else
@endif @php $housekeeping_id = $departments->where('other_info4', 'HK')->first()->id ?? null; $maintenance_id = $departments->where('other_info4', 'MAINTENANCE')->first()->id ?? null; $service_id = $departments->where('other_info4', 'SERVICE')->first()->id ?? null; @endphp @if($maintenance_id)

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

@endif @if($housekeeping_id)

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

@endif @if($service_id)

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

@endif
Select Department First
@if (get_guard() == 'admin')
@else
@endif
@include('frontdesk.common.common') @endsection @section('script') @endsection