@extends('layouts.head_office_app') @section('title', 'Notifications') @section('content')

Notifications @if($unread_count > 0) {{$unread_count}} @endif

@foreach($notifications as $alert)
{{$alert->created_at->format('d F, Y h:i a')}}
{{$alert->title}}
@endforeach @if(!count($notifications))

No notification found.

@endif
{!! $notifications->render('pagination::bootstrap-5') !!}
@endsection