@extends('layouts.recruitment') @section('content')

Notification Center

Manage your recruitment alerts and system updates

@if(Auth::user()->unreadNotifications->count() > 0)
@csrf
@endif
@forelse($notifications as $notification)

{{ $notification->data['message'] ?? 'System Notification' }}

{{ $notification->created_at->diffForHumans() }} @if(!$notification->read_at) New @endif
@if(!$notification->read_at)
@csrf
@endif
@empty

All caught up!

You don't have any new notifications at the moment.

Return to Dashboard
@endforelse
{{ $notifications->links() }}
@endsection