@extends('layouts.main_dashboard.app') @section('title', __('dashboard.Create Notification')) @section('page_heading', __('dashboard.Create Notification')) @php $isArabic = app()->getLocale() === 'ar'; $oldChannels = collect(old('channels', ['in_app'])); $oldAudiences = collect(old('audience_types', ['students'])); @endphp @section('skip_page_hero', true) @section('content')

{{ __('dashboard.Create Notification') }}

{{ $isArabic ? 'أنشئ إشعارًا عامًا جديدًا وحدد القنوات والفئات المستهدفة قبل النشر.' : 'Create a new general notification and choose channels and target audiences before publishing.' }}

@csrf
@error('title')

{{ $message }}

@enderror
@error('description')

{{ $message }}

@enderror

{{ $isArabic ? 'قنوات الإرسال' : 'Delivery Channels' }}

@error('channels')

{{ $message }}

@enderror

{{ $isArabic ? 'الفئات المستهدفة' : 'Target Audiences' }}

@foreach([ 'students' => $isArabic ? 'الطلاب' : 'Students', 'teachers' => $isArabic ? 'المدرسون' : 'Teachers', 'subject_heads' => $isArabic ? 'رؤساء الأقسام' : 'Subject Heads', 'social_workers' => $isArabic ? 'الأخصائيون الاجتماعيون' : 'Social Workers', 'health_visitors' => $isArabic ? 'الأخصائيون الصحيون' : 'Health Visitors', ] as $value => $label) @endforeach
@error('audience_types')

{{ $message }}

@enderror

{{ $isArabic ? 'فلترة ذكية' : 'Precision Filters' }}

{{ $isArabic ? 'الوصول الجراحي للمستلمين' : 'Surgical Recipient Precision' }}

{{ $isArabic ? 'يمكنك الدمج بين المرحلة والصف والفصل والقسم والمادة أو اختيار مستخدمين محددين بالاسم.' : 'Combine stage, grade, class, department, subject, or pick explicit users by name.' }}

{{ $isArabic ? 'مرفق اختياري' : 'Optional Attachment' }}

{{ __('dashboard.Supported formats: jpg, png, pdf. Max: 10MB') }}

@error('attachment')

{{ $message }}

@enderror

{{ $isArabic ? 'ملاحظات مهمة' : 'Important Rules' }}

  • {{ $isArabic ? 'الإشعار داخل النظام يُرسل لكل المستخدمين المطابقين للاستهداف.' : 'In-app notification is delivered to all resolved recipients.' }}
  • {{ $isArabic ? 'البريد يُرسل فقط للبريد الرئيسي الموثق وأي عناوين إضافية موثقة ومفعلة للإشعارات.' : 'Email is sent only to verified primary emails and verified additional emails enabled for notifications.' }}
  • {{ $isArabic ? 'كلما زادت الفلاتر أصبحت النتيجة أدق.' : 'The more filters you apply, the more precise the audience becomes.' }}
{{-- Scheduled At --}}

{{ app()->getLocale() === 'ar' ? 'اتركه فارغاً للإرسال الفوري' : 'Leave empty to send immediately' }}

{{ __('dashboard.Cancel') }}
@endsection