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

تقرير شهور

@endsection @section('content')
@if(request()->month) @php $days = \Carbon\Carbon::create(2026, request()->month)->daysInMonth; @endphp @for($i = 1; $i <= $days; $i++) @php $day = "2026-". request()->month . "-" . $i; @endphp @endfor
اليوم مراجعة عامة مراجعة مباشرة
{{$day}} {{auth()->user()->revisionQuestionCountByDay($day, 'main')}} {{auth()->user()->revisionQuestionCountByDay($day, 'direct')}} تفاصيل
@elseif($date = request()->date) @foreach($admins as $key => $admin) @endforeach
اليوم الادمن مراجعة عامة مراجعة مباشرة
{{$date}} {{$admin->name}} {{$admin->myRevisionQuestionCountByDate($date, 'main')}} {{$admin->myRevisionQuestionCountByDate($date, 'direct')}}
@else @foreach($months as $key => $month) @endforeach
الشهر مراجعة عامة مراجعة مباشرة #
{{$month}} {{auth()->user()->revisionQuestionCountByMonth($key, 'main')}} {{auth()->user()->revisionQuestionCountByMonth($key, 'direct')}} تفاصيل الادمنز
@endif
@endsection @section('script') @endsection