@extends('welcome') @section('title', '| matrice') @section('content')

Liste des matrices

@if ($message = Session::get('success'))

{{ $message }}

@endif @if ($message = Session::get('error'))

{{ $message }}

@endif
LISTE D'ENREGISTREMENT DES MATRICES
@foreach ($matrices as $matrice) @endforeach
Appel Tâche Responsable Date Limite Personnes Impliquées Commentaire Actions
{!! $matrice->appel->titre !!} {{ $matrice->tache }} {{ $matrice->employe->nom }} {{ Carbon\Carbon::parse( $matrice->datelimite )->format('d-m-Y') }} {{ $matrice->personneimplique }} {{ $matrice->comentaire }} {!! Form::open(['method' => 'DELETE', 'route'=>['matrice.destroy', $matrice->id], 'style'=> 'display:inline', 'onclick'=>"if(!confirm('Êtes-vous sûr de vouloir supprimer cet enregistrement ?')) { return false; }"]) !!} {!! Form::close() !!}
@endsection