@extends('layouts.app') @section('title', 'Notifikasi') @section('content') @if($unreadCount > 0)
Tandai Semua Dibaca ({{ $unreadCount }})
@endif
@forelse($notifikasi as $item)
@php $iconConfig = match($item->tipe) { 'lembur' => ['bg' => 'bg-amber-100', 'text' => 'text-amber-600', 'icon' => ''], 'presensi' => ['bg' => 'bg-green-100', 'text' => 'text-green-600', 'icon' => ''], 'pengumuman' => ['bg' => 'bg-blue-100', 'text' => 'text-blue-600', 'icon' => ''], 'surat_izin', 'izin' => ['bg' => 'bg-purple-100', 'text' => 'text-purple-600', 'icon' => ''], 'poin' => ['bg' => 'bg-rose-100', 'text' => 'text-rose-600', 'icon' => ''], default => ['bg' => 'bg-slate-100', 'text' => 'text-slate-600', 'icon' => ''], }; @endphp {!! $iconConfig['icon'] !!}

{{ $item->judul }}

{{ $item->pesan }}

@if(!$item->is_read) @endif

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

@empty

Belum ada notifikasi

Notifikasi akan muncul saat ada aktivitas terkait Anda

@endforelse
@endsection @section('script') @endsection