@extends('templates.dashboard') @section('dashboard')

Les Tableaux

@if(session()->has('delete'))
{{ session()->get('delete') }}
@endif
Tableau Des Produits
@foreach ($posts as $item) @endforeach
Nom & Prénom Email Date d'ajout Date Modification Modifier Supprimer
Nom & Prénom Email Date d'ajout Date Modification Modifier Supprimer
{{ $item->name }} {{ $item->email }} {{ $item->created_at }} {{ $item->updated_at }} @if($item->id !== 1) @endif
@endsection