@extends('backoffice.dashboard') @section('content') @if(Auth::check())

طلبات التظاهرات الرياضية

@if(session('success')) @endif
{{-- NEW COLUMN --}} @forelse($rows as $i => $row) @php // normalize IDs (null-safe -> integers or null) $idType = isset($row->raw->id_type) ? (int)$row->raw->id_type : null; $statutId = isset($row->raw->statut_id) ? (int)$row->raw->statut_id : null; $statut2Id = isset($row->raw->statut2_id) ? (int)$row->raw->statut2_id : null; // Hide controls if ANY is rejected (3) $isRejected = ($idType === 3) || ($statutId === 3) || ($statut2Id === 3); // Hide controls if ALL are accepted (1) $allAccepted = ($idType === 1 && $statutId === 1 && $statut2Id === 1); // Final: show controls when NOT rejected AND NOT all accepted $showControls = !$isRejected && !$allAccepted; // derive manifestation label $manifestationLabel = ($row->raw->type_formulaire_id === 13) ? 'دولي' : (($row->raw->type_formulaire_id === 12) ? 'وطني' : '-'); // status class $statusAr = $row->statut?->statut_ar ?? 'في الانتظار'; $statusClass = ($statusAr == 'قبول') ? 'status-badge--success' : (($statusAr == 'رفض') ? 'status-badge--danger' : 'status-badge--pending'); @endphp @empty @endforelse
المعرف رقم الملف اسم الهيكل اسم التظاهرة التاريخ الولاية البلدية نوع التظاهرةالحالة إجراءات
{{ $i + 1 }} {{ $row->num_dossier }} {{ $row->nom_organisme ?? '-' }} {{ $row->nom_evenement ?? '-' }} {{ $row->date_even ?? '-' }} {{ $row->gouvernorat ?? ($row->raw->evenementSportifs->first()?->gouvernorat->nom_ar ?? '-') }} {{ $row->delegation ?? ($row->raw->evenementSportifs->first()?->delegation->nom_ar ?? '-') }} {{ $manifestationLabel }} {{ $row->display_statut ?? $statusAr }} @if(!empty($row->is_pending) && $row->is_pending) — قيد التأكيد @endif
{{-- show edit/toggle/delete when $showControls is true --}} @if($showControls)
@csrf @method('PATCH')
{{-- delete now opens a SweetAlert modal --}} @endif {{-- Confirm (pending) small icon (uses SweetAlert now) --}} @if(!empty($row->is_pending) && $row->is_pending && !$isRejected && !$allAccepted) @endif
لا توجد طلبات تظاهرات رياضية.
{{ $demandes->links('pagination::bootstrap-5') }}
@else @endif @endsection