@extends('client.layout') @section('title', 'نتيجة تتبع الطلب') @push('styles') @endpush @section('content') نتيجة تتبع الطلب

نتائج تتبع الطلبات الخاصة بك

{{-- قسم الترخيص --}}
@if($branches->isNotEmpty())
@foreach ($branches as $branch) @php $license = $branch->licenses->first(); @endphp @endforeach
اسم المدرسة اسم الفرع المنطقة الحالة الملاحظة ملف الموافقة
{{ $branch->school->school_name ?? '-' }} {{ $branch->name ?? '-' }} {{ $branch->area->name ?? 'غير محددة' }} @if($license) @switch($license->status) @case('under_review') قيد المراجعة @break @case('approved') مقبول @break @case('rejected') مرفوض @break @default - @endswitch @else لا يوجد ترخيص @endif {{ $license?->note ?? '-' }} @if($license && $license->status === 'approved' && $license->final_status && $license->approval_file) عرض الملف @else غير متاح @endif
@else
لا توجد فروع حالياً
@endif
@endsection