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

Notifications

All Notifications
@if($notifications->count() > 0)
@foreach($notifications as $notification) @endforeach
Message Date Status Action
{{ $notification->message }} {{ $notification->created_at->format('d M Y H:i') }} {{ $notification->is_read ? 'Read' : 'Unread' }} @if(!$notification->is_read) Mark Read @else Read @endif
{{ $notifications->links() }} @else
No notifications
@endif
@endsection