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

Notifications

@forelse($notifications as $i => $notif) @empty @endforelse
SN# User Title Description User Read Admin Read Created At Updated At
{{ $i+1 }}
Flag {{ $notif->user->name ?? $notif->user->email }}
{{ $notif->title }} {{ $notif->description }} @if($notif->is_read) Read @else Unread @endif @if($notif->is_admin_read) Read @else Unread @endif {{ $notif->created_at->format('d M Y h:i A') }} {{ $notif->updated_at->format('d M Y h:i A') }}
No Notification found.
{{ $notifications->links() }}
@push('scripts') @endpush @endsection