{{-- Toast Notification Container Place once in the main layout. Toasts are triggered via $store.toast.show(). Usage (JS): $store.toast.success('Profile updated!'); $store.toast.error('Something went wrong.'); $store.toast.warning('Your session will expire soon.'); $store.toast.info('3 new notifications.'); Usage (Blade session flash): session()->flash('toast-success', 'Saved!'); --}}
{{-- Flash session toasts --}} @if(session('toast-success')) @endif @if(session('toast-error')) @endif @if(session('toast-warning')) @endif @if(session('toast-info')) @endif