@use('app\Helpers\Helpers') @php $settings = Helpers::getSettings(); if ($settings) { $googleMapKey = $settings['firebase']['google_map_api_key'] ?? null; } @endphp @extends('backend.layouts.master') @section('title', __('static.serviceman.serviceman_list')) @section('content')

{{ __('static.serviceman.serviceman_list') }}

    @foreach ($servicemen as $serviceman)
  • serviceman
    {{ $serviceman['name'] }}
    {{ $serviceman['review'] ? number_format($serviceman['review'], 1) : 'Unrated' }}
  • @endforeach
@if ($googleMapKey)
@endif
@endsection @if ($googleMapKey) @include('backend.serviceman-location.google') @endif @push('js') @endpush