@extends('layouts.dashboard') @section('content') @php $states = [ 'pending' => 'Nouveau', 'archived' => 'Archivé', 'trash' => 'Corbeille' ]; $colors = [ 'pending' => 'bg-yellow-100 text-yellow-800', 'archived' => 'bg-gray-200 text-gray-700', 'trash' => 'bg-gray-200 text-gray-600' ]; @endphp @push('head') @endpush

Contact

@foreach($states as $state => $label) @endforeach
@foreach($states as $state => $label)
@if(count($messages[$state] ?? []) > 0)
@endif
@forelse(($messages[$state] ?? []) as $msg) @empty
Aucun message dans cet état.
@endforelse
@endforeach
@endsection