@extends('dashboard.layout.base') @section('content')
Liste des demandes
@include('dashboard.component.dashboard_error') @include('dashboard.component.notifications') @if(count($demandes) > 0)
@foreach($demandes as $demande) @endforeach
N° sortie Nom Prénom Status Date de retrait Date de retoure Afficher Imprimer Modifier
{{ $demande->n_so }} {{ $demande->student->first_name }} {{ $demande->student->last_name }} {{ $demande->statut}} {{ $demande->date_so }} {{ $demande->date_en }}
@else

Vous n'avez aucun demande

@endif
@include('dashboard.component.copyright')
@endsection @push('styles') @endpush @push('scripts') @endpush