@if(session('success') || session('error') || session('warning') || session('info')) @php $type = session('success') ? 'success' : (session('error') ? 'error' : (session('warning') ? 'warning' : 'info')); $message = session($type); $styles = [ 'success' => [ 'icon' => '✅', 'title' => 'Success', 'color' => 'green', 'button' => 'OK, Got It', ], 'error' => [ 'icon' => '❌', 'title' => 'Error', 'color' => 'red', 'button' => 'Dismiss', ], 'warning' => [ 'icon' => '⚠️', 'title' => 'Warning', 'color' => 'yellow', 'button' => 'I Understand', ], 'info' => [ 'icon' => 'ℹ️', 'title' => 'Information', 'color' => 'blue', 'button' => 'OK, Thanks', ], ]; $style = $styles[$type]; @endphp
{{ $style['icon'] }}

{{ $style['title'] }}

{{ $message }}

@endif