@extends('admin.layouts.master') @section('title', 'الإشعارات') @section('content')
@include('admin.Alerts')

مركز الإشعارات

إجمالي الإشعارات: {{ $notifications->total() }}

@csrf
@forelse($notifications as $notif)
@if(($notif->data['type'] ?? '') === 'invoice_posted') @elseif(($notif->data['type'] ?? '') === 'low_stock') @else @endif
{{ $notif->data['message'] ?? 'إشعار' }}
{{ $notif->created_at->format('Y/m/d H:i') }} — {{ $notif->created_at->diffForHumans() }}
@if(!$notif->read_at) جديد @endif
@empty
لا توجد إشعارات
@endforelse
@if($notifications->hasPages()) @endif
@endsection