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

Notifikasi

@csrf
@forelse($notifications as $notif)

{{ $notif->title }}

@if(!$notif->is_read) Baru @endif

{{ $notif->message }}

{{ $notif->created_at }}

@if($notif->link) Lihat @endif @if(!$notif->is_read)
@csrf
@endif
@empty

Tidak ada notifikasi

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