config('notify.theme') === 'light',
'bg-slate-800' => config('notify.theme') !== 'light',
'border-green-600' => session()->get('notify.type') === 'success',
'border-red-600' => session()->get('notify.type') === 'error',
])
>
@if(session()->get('notify.type') === 'success')
@endif
@if(session()->get('notify.type') === 'error')
@endif