@extends('layouts.user')
@section('title', 'Notifikasi')
@section('content')
Notifikasi
@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)
@endif
@empty
@endforelse
{{ $notifications->links() }}
@endsection