• {{ $unread_count }}
    • {{ $unread_count }} {{ __('dashboard.New') }}

      {{ __('dashboard.App Notifications') }}
    • @forelse($notifications as $notification) @php $isUnread = is_null($notification->read_at); @endphp
      {{ $notification->title }}

      {{ $notification->body }}

      {{ $notification->created_at->diffForHumans() }}
      @if($isUnread) @else
      @endif
      @empty
      {{ __('dashboard.no matching records found') }}
      @endforelse
    • @if(count($notifications) >= 20) @endif