@foreach($stages as $stg)
@php $stgApps = $applications->get($stg->id, collect()); @endphp
{{ $stg->stage_name_en }}
{{ $stgApps->count() }}
@foreach($stgApps as $app)
{{ $app->priority }}
{{ $app->customer ? $app->customer->full_name_en : 'N/A' }}
{{ $app->service ? $app->service->name_en : 'Service' }}
@endforeach
@endforeach