@extends('layouts.app') @section('title', 'Notifikasi - IDN Menulis') @section('content')

Notifikasi

Semua notifikasi Anda

@forelse($notifications as $notification)

{{ $notification->title }}

{{ $notification->message }}

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

@if($notification->action_url) Lihat @endif @if(!$notification->is_read)
@csrf
@endif
@empty

Tidak ada notifikasi

@endforelse
@if($notifications->hasPages())
{{ $notifications->links() }}
@endif
@endsection