• {{-- 🔔 Icon --}} @if($unreadCount > 0) {{ $unreadCount }} @endif {{-- 📦 Dropdown --}}
      {{-- 🔹 Header --}}
    • Notifications @if ($unreadCount > 0) {{ $unreadCount }} @endif
      @if ($unreadCount > 0) Clear All @endif
    • {{-- 🔹 Body --}}
    • @forelse($notifications as $item) @php $notification = $item->notification; $icons = [ 'success' => 'fa fa-check-circle text-success', 'warning' => 'fa fa-exclamation-triangle text-warning', 'danger' => 'fa fa-times-circle text-danger', 'info' => 'fa fa-info-circle text-info', 'job_post'=> 'fa fa-briefcase text-primary', ]; $type = $notification->type ?? 'info'; @endphp {{-- 🔔 Notification Item --}} {{-- ROW 1: ICON + TYPE + TIME --}}
      {{-- Top Row --}}
      {{ str_replace('_', ' ', $type) }}
      {{ $item->created_at->diffForHumans() }}
      {{-- Title --}}
      {{ $notification->title }}
      {{-- Message --}}
      {!! \Illuminate\Support\Str::limit($notification->message, 90) !!}
      @empty

      No notifications found
      @endforelse
    • {{-- 🔹 Footer --}}
    • View All