@extends('agent.layouts.app') Agent Portal Dashboard @section('content')

Notifications

Stay updated with important updates

@forelse($notifications as $notification)
@if(str_contains($notification->title, 'Overdue')) ⏰ @else 📝 @endif

{{ $notification->title }}

{{ $notification->description }}

{{ $notification->created_at->diffForHumans() }}

@if($notification->is_read == 0)
@endif
@empty
🔔

No notifications yet

Check back later for updates

@endforelse
@endsection