@extends('public.layout.app') {{-- or your student/teacher layout --}} @section('title', __('front.my_notifications')) @section('body')

{{ __('front.my_notifications') }}

@csrf
@forelse($notifications as $n)
{{ $n->title }} {{ $n->sent_at->diffForHumans() }}

{{ $n->message }}

@if(!$n->is_read)
@csrf
@endif
@empty

{{ __('front.no_notifications') }}

@endforelse
{{ $notifications->links('pagination::bootstrap-4') }}
@endsection