@extends('layouts.admin', ['title' => 'إشعارات العملاء | RaseedNow']) @section('content')

إرسال إشعار للعملاء

اكتب رسالة قصيرة تظهر داخل حساب العميل في صفحة الإشعارات.

العروض والتسويق
كل العملاء{{ number_format($stats['all']) }}
العملاء النشطون{{ number_format($stats['active']) }}
لديهم محفظة{{ number_format($stats['withWallet']) }}
@csrf

تفاصيل الرسالة

@if(session('status'))
{{ session('status') }}
@endif @if($errors->any())
{{ $errors->first() }}
@endif

آخر الإشعارات المرسلة

@forelse($recentNotifications as $notification)
{{ $notification->title }} {{ $notification->user?->display_name ?: $notification->user?->name ?: 'عميل' }} {{ $notification->created_at?->diffForHumans() }}
@empty
لم يتم إرسال إشعارات إدارية بعد.
@endforelse
@endsection