@extends('backoffice.dashboard') @section('content')

{{ $concours->titre }}

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