@extends('layouts.shell') @section('title', 'Notifikasi') @section('content')

Notifikasi

@forelse($notifications as $n)

{{ $n->title }}

@if($n->body)

{{ $n->body }}

@endif

{{ $n->created_at->diffForHumans() }}

@empty @endforelse
{{ $notifications->links() }}
@endsection