@extends('dashboard.layouts.master') @section('css') @endsection @section('breadcrumb')

{{$class->name}}

@endsection @section('content')
تاكيد الحجز اون لاين تاكيد الحجز في السنتر
{{$orders->where('is_attend', 1)->whereNotNull('deposit_order_id')->count()}} {{sizeOf(array_unique($orders->where('is_attend', 1)->whereNull('deposit_order_id')->pluck('student_id')->toArray()))}}
@foreach ($orders as $order) @endforeach
الحصة اسم الطالب رقم الهاتف رقم ولي الامر المنطقة تاريخ الحجز الحضور
{{ $order->student->name ?? "" }} {{ $order->student->phone ?? "" }} {{ $order->student->parent_phone ?? "" }} {{ $order->student->area->city_name_ar ?? "" }} {{ $order->created_at }} @if($order->deposit_order_id) {{ $order->is_attend ? "حضر اونلاين" : "---" }} @else {{ $order->is_attend ? "حضر سنتر" : "---" }} @endif
@include('dashboard.pages.student-management.partials.add-action-modal') @endsection @section('script') @endsection