@php $types = [ 'success' => [ 'color' => 'bg-gradient-to-r from-green-600 to-green-500 border-green-800', 'icon' => 'fa-solid fa-circle-check', ], 'error' => [ 'color' => 'bg-gradient-to-r from-red-600 to-red-500 border-red-800', 'icon' => 'fa-solid fa-circle-xmark', ], 'warning' => [ 'color' => 'bg-gradient-to-r from-yellow-600 to-yellow-500 border-yellow-800', 'icon' => 'fa-solid fa-triangle-exclamation', ], 'info' => [ 'color' => 'bg-gradient-to-r from-blue-600 to-blue-500 border-blue-800', 'icon' => 'fa-solid fa-circle-info', ], ]; @endphp @foreach(['success', 'error', 'warning', 'info'] as $type) @if(session($type))
{{ session($type) }}
@endif @endforeach