@forelse(auth()->user()->notifications()->latest()->take(3)->get() as $notification)
{{-- Notification Icon --}}
@switch($notification->data['type'] ?? 'default')
@case('deposit')
@break
@case('withdrawal')
@break
@case('investment')
@break
@case('roi')
@break
@default
@endswitch
{{ $notification->data['message'] }}
{{ $notification->created_at->diffForHumans() }}