@extends('layouts.superadmin') @section('title','غيابات اليوم + القادم') @section('content') @php use Carbon\Carbon; $tz = config('app.timezone','Asia/Jerusalem'); $todayLabel = Carbon::parse($today ?? now($tz)->toDateString(), $tz)->format('Y-m-d'); $to7Label = Carbon::parse($to7 ?? now($tz)->addDays(7)->toDateString(), $tz)->format('Y-m-d'); $todayAbsences = $todayAbsences ?? collect(); $upcoming = $upcoming ?? collect(); $counts = $counts ?? [ 'today' => $todayAbsences->count(), 'upcoming_7' => $upcoming->count(), 'unique_today' => $todayAbsences->pluck('user_id')->unique()->count(), ]; @endphp
صفحة متابعة سريعة للإدارة: من الغائب اليوم بعذر رسمي؟ وما هي الغيابات القادمة خلال 7 أيام. مع إمكانية التبديل بين عرض كروت أو جدول.
| العضو | الفترة | السبب |
|---|---|---|
| {{ $a->user->name ?? $a->user->username }} | {{ $a->from_date }} → {{ $a->to_date }} | {{ $a->excuse_reason }} |
| لا يوجد غيابات رسمية تغطي تاريخ اليوم. | ||
| العضو | الفترة | السبب |
|---|---|---|
| {{ $a->user->name ?? $a->user->username }} | {{ $a->from_date }} → {{ $a->to_date }} | {{ $a->excuse_reason }} |
| لا يوجد غيابات قادمة خلال 7 أيام. | ||