@extends('layouts.superadmin') @section('title','ProActive Extra — تفاصيل حدث') @section('content')
@include('superadmin.proactive-extra.partials.flash') @include('superadmin.proactive-extra.partials.errors') {{-- HERO --}}
حدث #{{ $item->id }}

{{ $item->title }}

الحالة: @include('superadmin.proactive-extra.partials.badge', ['value'=>$item->status, 'kind'=>'event']) النوع: {{ $item->event_kind }} المجموعة: {{ $item->group_title ?? '—' }} الحملة: {{ $item->campaign_title ?? '—' }}
التاريخ: {{ $item->event_date ?? '—' }} الوقت: {{ $item->start_time ?? '—' }} - {{ $item->end_time ?? '—' }} المكان: {{ $item->location_text ?? '—' }}
{{-- ACTIONS --}}
إدارة الحدث
Control
تعديل رجوع
@csrf
@csrf
@csrf
@csrf
@csrf
@csrf @method('DELETE')
المنشئ: {{ $item->created_by_name ?? ('User#'.$item->created_by) }}
{{-- RELATED: REPORTS / NOTES --}}
{{-- REPORTS --}}

تقارير الحدث

آخر التقارير المرتبطة بالحدث.

تقرير
@forelse($reports as $r)
#{{ $r->id }} • {{ $r->report_title }}
{{ $r->report_date ?? '—' }}
@include('superadmin.proactive-extra.partials.badge', ['value'=>$r->status, 'kind'=>'report'])
@empty @include('superadmin.proactive-extra.partials.empty', ['text'=>'لا يوجد تقارير مرتبطة.']) @endforelse
{{-- NOTES --}}

ملاحظات الحدث

آخر الملاحظات المتعلقة بالحدث.

ملاحظة
@endsection