@extends('portal.applicant_dashboard') @section('applicant')
Your Notifications
@if($notifications->count() == 0)
You have no notifications at the moment.
@else
    @foreach($notifications as $note)
  • {{ $note->data['title'] ?? 'Notification' }}
    {{ $note->data['message'] ?? '' }}
    {{ $note->created_at->diffForHumans() }}
    @if(!$note->read) Mark as Read @endif
  • @endforeach
@endif
@endsection