@extends('layouts.app', ['title' => 'Resumen académico', 'pageClass' => 'page-home']) @section('content')

Panel principal

Resumen académico

{{ str($today->copy()->locale('es')->isoFormat('dddd D [de] MMMM [de] YYYY'))->ucfirst() }}

Jornada de {{ str($agendaOptions->get($agendaSelection)['label'])->lower() }} @if ($agendaEvent) {{ $agendaEvent->event_type }} {{ $agendaEvent->name }} · {{ $agendaDate->format('d/m/Y') }} {{ $agendaEvent->isNonComputable() ? 'No computa asistencia' : 'Computa asistencia' }} @else Actividad presencial {{ str($agendaDate->copy()->locale('es')->isoFormat('dddd D [de] MMMM'))->ucfirst() }} · Sin eventos especiales. Computa asistencia @endif
@foreach ($dashboardStats as $stat)
{{ $stat['label'] }} {{ number_format($stat['value'], 0, ',', '.') }}
@endforeach
Horas cargadas este mes {{ $attendanceProgress['loaded'] }} / {{ $attendanceProgress['expected'] }} {{ $attendanceProgress['pending'] }} pendientes hasta hoy

Actividad de {{ str($agendaOptions->get($agendaSelection)['label'])->lower() }}

Clases por horario

{{ $agendaSlots->flatten()->count() }}
@if ($agendaSlots->isEmpty())
No hay clases programadas para {{ str($agendaOptions->get($agendaSelection)['label'])->lower() }}.
@else @endif
@endsection