@php switch($type) { case 'success': $text = 'Sukces'; $class = 'success'; $icon = 'check'; break; case 'info': $text = 'Informacja'; $class = 'info'; $icon = 'info'; break; case 'warning': $text = 'Ostrzerzenie'; $class = 'warning'; $icon = 'warning'; break; case 'error': case 'danger': $text = 'Błąd'; $class = 'danger'; $icon = 'times-circle'; break; default: $text = ucfirst($type); $class = $type; $icon = null; } @endphp