@php $alertTypes = [ 'success' => ['bg' => 'bg-green-500', 'dark' => 'dark:bg-teal-600', 'text' => 'text-white', 'title' => '¡Éxito!'], 'error' => ['bg' => 'bg-red-500', 'dark' => 'dark:bg-red-700', 'text' => 'text-white', 'title' => 'Error!'], 'warning' => ['bg' => 'bg-yellow-500', 'dark' => 'dark:bg-amber-500', 'text' => 'text-black', 'title' => 'Advertencia!'], 'info' => ['bg' => 'bg-blue-500', 'dark' => 'dark:bg-cyan-600', 'text' => 'text-white', 'title' => 'Información!'], ]; @endphp @foreach ($alertTypes as $type => $styles) @if (Session::has($type))
{!! Session::get($type) !!}