@extends('layouts.master_panel') @section('title') Historique de ressources @stop @section('CSS') @stop @section('JS') @stop @section('content')
@if(auth()->user()->is_admin == 1) Historique @endif
@if(Session::has('error')) @endif @if(Session::has('success')) @endif
@if(auth()->user()->super_admin == 1) @endif @foreach($historique as $histor) @if(auth()->user()->super_admin == 1) @endif @endforeach
Nom et Prénom Historique DateAction
{{ $histor->id }} {{ $histor->teacher->last_name . ' ' . $histor->teacher->first_name }} {{ html_entity_decode($histor->historique) }} {{ $enTofr->format('d/m/Y H:i') }}
@stop