@extends('layouts.expert.main') @section('style') @endsection @section('content')
@include('layouts.expert.miniHeader')
{{--

Candidats en entente

23

Candidats suivis

76

Dossiers traités

83

--}} @include('layouts.expert.statistic')
@if(count($candidats) == 0)

Pas de Dossiers Traités.

@else @foreach ($candidats as $candidat)
Type de Candidature: @if($candidat->candidatures->count() > 0) {{ $candidat->candidatures[0]->type}} @endif
CSS: @if($candidat->candidatures->count() > 0) {{ $candidat->candidatures[0]->CSS}} @endif
CST: @if($candidat->candidatures->count() > 0) {{ $candidat->candidatures[0]->CTS}} @endif
Grade CAMES actuel: @if($candidat->candidatures->count() > 0) {{ $candidat->candidatures[0]->grade_cames_actuel}} @endif
Grade CAMES postulé: @if($candidat->candidatures->count() > 0) {{ $candidat->candidatures[0]->grade_cames_postule}} @endif
nombre de candidature: @if($candidat->candidatures->count() > 0) {{ $candidat->candidatures[0]->nombre_candidature}} @endif
@if($candidat->candidatures->count() > 0) Détail @else Ce candidat n'a pas de candidatures. @endif
@endforeach @endif
@endsection