@extends('warga.layouts.warga') @section('subtitle', 'Notifikasi') @section('content_body')
Daftar Pemberitahuan
@forelse($notifications as $notif) @php $isUnread = is_null($notif->read_at); @endphp

{{ $notif->data['message'] ?? '-' }}

{{ $notif->created_at->diffForHumans() }}
@if($isUnread)
@csrf
@endif
@csrf @method('DELETE')
@empty
Belum ada notifikasi atau pemberitahuan.
@endforelse
@stop @section('warga_js') @stop