@extends('layouts.app') @section('title', 'Notifications') @section('content')
Account updates

Notifications.

@if(auth()->user()->unreadNotifications()->exists())
@csrf
@endif
@forelse($notifications as $notification)
{{ $notification->data['title'] ?? 'Account update' }}@unless($notification->read_at)New@endunless

{{ $notification->data['message'] ?? '' }}

{{ $notification->created_at->diffForHumans() }}@if($notification->data['url'] ?? null)View Details@endif
@empty@endforelse
@endsection