@php $toast = session('toast_notify'); if (!$toast) return; $type = $toast['type'] ?? 'success'; $bgClass = match($type) { 'success' => 'bg-success text-white', 'error' => 'bg-danger text-white', 'warning' => 'bg-warning text-dark', default => 'bg-primary text-white', }; @endphp
{{ $toast['message'] }} @if(!empty($toast['action'])) {{ $toast['action']['label'] }} @endif