@extends('admin.layout.master') @section('content')

قائمة المدارس

إضافة مدرسة جديدة
@if(session('success'))
{{ session('success') }}
@endif @forelse ($schools as $index => $school) @empty @endforelse
# اسم المدرسة الأنواع المحافظة الشعار المستخدم الإجراءات
{{ $index + 1 }} {{ $school->school_name }} @php $types = json_decode($school->type, true) ?? []; @endphp @foreach ($types as $type) @if($type === 'pteparatory') تمهيدي @elseif($type === 'primary') أساسي @elseif($type === 'middle') إعدادي @elseif($type === 'high') ثانوي @else {{ $type }} @endif @endforeach {{ $school->city->name ?? 'غير محددة' }} @if($school->logo) الشعار @else لا يوجد @endif {{ $school->user->name ?? 'غير محدد' }} تعديل
@csrf @method('DELETE')
لا توجد مدارس حتى الآن
@endsection