@extends('layouts.admin') {{trans('home.trainings')}} @section('content')
@foreach($employeeTrainings as $employeeTraining_employee) @endforeach @foreach ($trainings as $training) @foreach($employeeTrainings as $employeeTraining) @php $trainingCounts = array_count_values($employeeTraining->training_ids); $count = $trainingCounts[$training['id']] ?? 0; // Default to 0 if not present @endphp @endforeach @endforeach
{{ $employeeTraining_employee->employee_name }}الدورات التدريبية
{{ $count }}{{ $training['name_ar'] }}
@endsection