@extends('templates.dashboard') @section('dashboard')
@if(session()->has('success'))
{{ session()->get('success') }}
@endif

Les Tableaux

@if(session()->has('delete'))
{{ session()->get('delete') }}
@endif
Tableau Des Produits
@foreach ($posts as $item) @if($item->promo === 'promo' ) @else @endif @endforeach
Titre Child Parent Promotion Apercu Afficher Modifier Supprimer
Titre Child Parent Promotion Apercu Afficher Modifier Supprimer
{{$item->titre}} {{ $item->categorie }} {{ $item->parent }}{{ $item->promo }}{{ $item->promo }}Image
@endsection