@extends('layouts.superadmin') @section('title','Socratic Sentinel — Broadcast') @section('content')
Broadcast — إشعار واحد للجميع (Topic)

Broadcast للجميع

اكتب إشعارًا واحدًا وسيصل للجميع عبر Topic (بدون إرسال 100 إشعار لمئة عضو).

@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
تحقق من المدخلات:
    @foreach($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif
إرسال Broadcast
Topic افتراضي: all
@csrf
كل الأعضاء لازم يكونوا عاملين Subscribe على Topic: all
آخر Broadcast/Notifications
آخر 20 محفوظة في قاعدة البيانات
@forelse($latest as $n) @php $type = $n->type ?? 'broadcast'; $icon = $n->icon ?? 'fa-solid fa-bullhorn'; $url = $n->action_url ?? null; @endphp
{{ $type }} {{ $n->created_at ?? '—' }}
{{ $n->message ?? '—' }}
@if($url) {{ $url }} @endif
id: {{ $n->id ?? '—' }}
@empty
لا يوجد إشعارات محفوظة بعد.
@endforelse
@endsection