@include('client-sidebar')

Notifications

@if ($notifications->count() > 0)
    @foreach ($notifications as $notification)
  • {{ $notification->message }}
    {{ $notification->created_at->diffForHumans() }}
  • @endforeach
@else

No notifications found.

@endif