@extends('layouts.admin') @section('header') @endsection @section('content')

GESTION DES AFFECTATIONS

@forelse($all_affectations as $key => $value) @empty @endforelse
Nom(s) & Prénom(s) Lieu d'affectation Date de début Date de fin Action
{{ $key+1 }} {{ strtoupper($value->personnel->nom_agent) }} {{ strtoupper($value->param->cd_params) }} {{ $value->debut_affectation }} {{ $value->fin_affectation }}
Aucune donnée trouvée !
@endsection @section('footer') @endsection