Notifikasi

@if($notifications->where('read_at', null)->count() > 0)
@csrf @method('PATCH')
@endif
@if($notifications->isEmpty()) @else
@foreach($notifications as $notif)

{{ $notif->data['message'] ?? 'Notifikasi baru' }}

{{ $notif->created_at->diffForHumans() }}

@if(!$notif->read_at)
@csrf @method('PATCH')
@endif
@endforeach
{{ $notifications->links() }}
@endif