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

Notifikasi

@if($notifikasi->total() > 0)
@csrf
@endif
@forelse($notifikasi as $n)
@if($n->tipe === 'rdp') @elseif($n->tipe === 'tanggapan_resmi') @elseif($n->tipe === 'status_aspirasi') @else @endif

{{ $n->judul }}

@unless($n->read_at) @endunless

{{ $n->pesan }}

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

@empty

Belum ada notifikasi.

Anda akan diberi tahu saat aspirasi Anda berubah status, mendapat tanggapan, atau mencapai ambang batas RDP.

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