@extends('admin.layout') @section('title', 'Notifikasi - LapFinder Admin') @section('content')
@csrf
@error('title')

{{ $message }}

@enderror
@error('type')

{{ $message }}

@enderror
@error('target')

{{ $message }}

@enderror
@error('message')

{{ $message }}

@enderror
@forelse($notifications as $notif) @empty @endforelse
Notifikasi Tipe Target Dibaca Tanggal Aksi

{{ $notif->title }}

{{ $notif->message }}

@if($notif->type === 'promo') Promo @elseif($notif->type === 'new_laptop') Laptop baru @else Info @endif @if($notif->target_user_id) {{ optional($notif->targetUser)->name ?? 'User terhapus' }} @else Semua user @endif {{ number_format($notif->reads_count) }} {{ $notif->created_at->format('d M Y H:i') }}
@if($notifications->hasPages())
{{ $notifications->withQueryString()->links() }}
@endif
@endsection