@extends('dashboard.layouts.master') @section('css') @endsection @section('breadcrumb')
| تاكيد الحجز اون لاين | تاكيد الحجز في السنتر |
|---|---|
| {{$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()))}} |
| الحصة | اسم الطالب | رقم الهاتف | رقم ولي الامر | المنطقة | تاريخ الحجز | الحضور |
|---|---|---|---|---|---|---|
| {{ $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 |