الحقول المرتبطة
@if($concours->fields->isEmpty())
لا توجد حقول مرتبطة.
@else
@foreach($concours->fields as $f)
- {{ $f->label }} ({{ $f->input_type }})
@endforeach
@endif
المترشحون ({{ $candidates->total() }})
| الاسم | CIN | البريد | الحالة | عرض |
@forelse($candidates as $cand)
| {{ $cand->nom }} {{ $cand->prenom }} |
{{ $cand->cin ?? '—' }} |
{{ $cand->email ?? '—' }} |
{{ $cand->etat_label }} |
عرض |
@empty
| لا يوجد مترشحون. |
@endforelse
{{ $candidates->links('pagination::bootstrap-5') }}