{{ __('Services') }} ({{ $totalServiceCount }})

{{ __('New Service') }}
@if (session('success'))
{{ session('success') }}
@endif
@php $counter = 1; @endphp @foreach ($groupedServices as $services) @foreach ($services as $service) @endforeach @endforeach
# {{ __('Service Name') }} {{ __('Description') }} {{ __('Has Payment') }} {{ __('Payment') }} {{ __('Processing Time') }} {{ __('Referred Window') }} {{ __('Actions') }}
{{ __('Window') }}: {{ $services->first()->window->getLocalized('name') ?? __('Unknown') }} ({{ $services->count() }} {{ __('services') }})
{{ $counter++ }} {{ $service->getLocalized('name') ?: '-' }} @php $description = $service->description; $desc = $description[app()->getLocale()] ?? ($description['en'] ?? '-'); @endphp {{ $desc ? Str::limit($desc, 50) : '-' }} @if ($service->has_payment) {{ __('Yes') }} @else {{ __('No') }} @endif {{ $service->payment ?? '-' }} @php $processingTime = $service->processing_time; echo $processingTime[app()->getLocale()] ?? ($processingTime['en'] ?? '-'); @endphp {{ $service->refWindow->name ?? '-' }} Edit
@csrf @method('DELETE')