@extends('admin.layouts.master') @section('title', 'تقرير الطلاب') @section('css') @endsection @section('content')
@include('admin.partials.page-header', [ 'title' => 'تقرير الطلاب', 'breadcrumbs' => $breadcrumbs, ])

إجمالي الطلاب

{{ $report['total'] }}

قائمة الطلاب
@forelse($report['students'] as $student) @empty @endforelse
# الاسم الفرع العمر الحالة
{{ $loop->iteration }} {{ $student['name'] }} {{ $student['branch'] ?? '-' }} {{ $student['age'] }} {{ $student['status'] }}
لا توجد بيانات
@endsection