@extends('admin.layouts.app')
@section('title', get_setting('site_name').' | '.__('Attendance Dashboard'))
@section('content')
@foreach([
['value' => $summary['total'] ?? 0, 'label' => __('Staff in scope'), 'icon' => 'fas fa-users', 'color' => 'text-dark', 'bg' => 'rgba(45,59,71,.08)'],
['value' => $summary['P'] ?? 0, 'label' => __('Present (P)'), 'icon' => 'fas fa-user-check', 'color' => 'text-success', 'bg' => 'rgba(40,167,69,.12)'],
['value' => $summary['D'] ?? 0, 'label' => __('Late (D)'), 'icon' => 'fas fa-clock', 'color' => 'text-warning', 'bg' => 'rgba(255,193,7,.15)'],
['value' => $summary['E'] ?? 0, 'label' => __('Extra delay (E)'), 'icon' => 'fas fa-exclamation-triangle', 'color' => 'text-danger', 'bg' => 'rgba(220,53,69,.1)'],
['value' => $summary['A'] ?? 0, 'label' => __('Absent (A)'), 'icon' => 'fas fa-user-slash', 'color' => 'text-danger', 'bg' => 'rgba(220,53,69,.08)'],
['value' => $summary['L'] ?? 0, 'label' => __('On leave (L)'), 'icon' => 'fas fa-procedures', 'color' => 'text-info', 'bg' => 'rgba(23,162,184,.12)'],
] as $card)
{{ $card['value'] }}
{{ $card['label'] }}
@endforeach