@extends('templates.dashboard')
@section('dashboard')
Les Tableaux
@if(session()->has('delete'))
{{ session()->get('delete') }}
@endif
Nom & Prénom |
Email |
Date d'ajout |
Date Modification |
Modifier |
Supprimer |
Nom & Prénom |
Email |
Date d'ajout |
Date Modification |
Modifier |
Supprimer |
@foreach ($posts as $item)
{{ $item->name }} |
{{ $item->email }} |
{{ $item->created_at }} |
{{ $item->updated_at }} |
|
@if($item->id !== 1)
@endif
|
@endforeach
@endsection