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

Notifications

@forelse ($notifications as $notification)
{{ ucfirst($notification->notification_type) }}

{{ $notification->description }}

{{ $notification->created_at->diffForHumans() }} @if($notification->status == 0) @endif
@empty

No notifications found.

@endforelse
{{ $notifications->links() }}
@endsection @push('scripts') @endpush