@extends('layouts.app') @section('title', 'Notifications') @section('content')
@if($notifications->count())
    @foreach($notifications as $notification)
  • {{ $notification->data['message'] ?? 'Notification' }} {{ $notification->created_at->diffForHumans() }}
  • @endforeach
@else

No notifications.

@endif
@endsection