@extends('layouts.base', [ "breadcrumb" => [ // see partials/breadcrumb.blade.php for default options "title" => "GESTSTUDENT NOUVELLE GÉNÉRATION", "nav" => [ "ACCUEIL" => "javaScript:void(0);", "LISTE DES COMPOSITIONS" => route('student.index'), ], ] ]) @section('title', "GestStudent NG Requêtes") @section('css') @endsection @section('content') @php $requests = $data["requests"]; $stats = $data["stats"]; @endphp {{-- alert with content --}} @include('partials.alert') {{-- alert settings with content --}} @include('partials.alert-settings') {{-- top stats --}}

ECs Concernés

{{$stats["ec"]}}

Requêtes

{{$stats["requests"]}}

Avec réponses

{{$stats["with_answer"]}}

En attente

{{$stats["without_answer"]}}

{{-- content --}}

Requêtes de réclamation

@foreach ($requests as $i => $req) {{-- details modal --}} @endforeach
Cours Aperçu du message Aperçu réponse Action

{{$req['intituleEcu']}}

{{$req['sigleFilieres'] ." | ". $req['niveauFormation']. " " . $req['annee']}}
{{$req['sujet']}}
{{$req['formated_dateenvoie']." à ".$req['heureenvoie']}}

{!! nl2br($req['requete']) !!}

@if (strlen($req['reponse']))

{{$req['reponse']}}

{{$req['formated_datereponse']." à ".$req['heurereponse']}}
@else En attente de réponse @endif
Cours Aperçu du message Aperçu réponse Action
@endsection @section('script') {{-- include page's specific scripts here --}} {{-- --}} @endsection