Notification List

{{--
--}}
@if(count(Auth::user()->Notifications)>0) @foreach ( Auth::user()->Notifications as $notification) @endforeach
# Time Title Action
{{$loop->index +1}} {{$notification->created_at->format('F d, Y h:i A')}} {{$notification->data['title']}}
@csrf @method('delete')
@else

Notifications Empty!

@endif