@yield('breadcrumb')
{{ __("Notification") }}
    @forelse (get_user_notifications(5) ?? [] as $item)
  • user
    {{ __($item->message->title) }}
    {{ $item->created_at->diffForHumans() }}
    {{ @$item->message->message ?? "" }}
  • @empty
  • {{ __('Notification Not Found') }}
  • @endforelse
client