@php $toastType = null; $toastTitle = null; $toastMessage = null; if (session()->has('success')) { $toastType = 'success'; $toastTitle = is_string(session('success')) && trim((string) session('success')) !== '' ? session('success') : 'Cập nhật thành công!'; $toastMessage = session('message') ?: session('description'); } elseif (session()->has('error')) { $toastType = 'error'; $toastTitle = is_string(session('error')) && trim((string) session('error')) !== '' ? session('error') : 'Có lỗi xảy ra!'; $toastMessage = session('message') ?: session('description'); } $toastIcon = $toastType === 'success' ? 'check_circle' : 'error'; $toastAccentText = $toastType === 'success' ? 'text-green-400' : 'text-red-400'; $toastAccentBg = $toastType === 'success' ? 'bg-green-500/20' : 'bg-red-500/20'; $toastAccentLine = $toastType === 'success' ? 'bg-green-500' : 'bg-red-500'; @endphp @if($toastType)
{{ $toastIcon }}

{{ $toastTitle }}

@if($toastMessage)

{{ $toastMessage }}

@endif
@endif