@extends('layouts.master_panel') @section('title') Fiche de liaison Parents-Direction @stop @section('CSS') @stop @section('JS') @stop @section('content')
@if(Session::has('error')) @endif @if(Session::has('success')) @endif
@foreach($reclamations as $reclamation) @endforeach
# Élève Classe Sujet Formulation Nom et prénom Téléphone Date La décision Action
{{ $reclamation->id }} {{ $reclamation->student->last_name . ' ' . $reclamation->student->first_name }} {{ $reclamation->classe->name }} détail {{ $reclamation->phone }} {{ $enTofr->format('d/m/Y H:i') }} @if(empty($reclamation->decision)) en attente @else Décision @if(!empty($reclamation->rapport)) Rapport @endif @endif @if(auth()->user()->super_admin == 1) Décision Rapport @endif
@stop