@extends('layouts.app') @section('title', 'Notifications') @section('page-title', 'Notifications') @section('content')
@if($notifications->count()) @foreach($notifications as $notif)
{{ $notif->title }}
{{ $notif->message }}
{{ $notif->created_at->diffForHumans() }}
@if(!$notif->is_read) Mark Read @endif
@endforeach {{ $notifications->links() }} @else

No notifications yet.

@endif
@endsection