@php $pageConfigs = ['navbarType' => 'hidden', 'contentLayout' => 'wide']; $configData = Helper::appClasses(); $daysCollection = $days ?? collect(); $totalLast90 = (int) $daysCollection->sum('total'); $todayKey = now()->toDateString(); $todayEntry = $daysCollection->firstWhere('day', $todayKey); $todayCount = (int) data_get($todayEntry, 'total', 0); $weekStart = now()->startOfWeek(); $weekCount = (int) $daysCollection ->filter(fn ($item) => \Carbon\Carbon::parse($item->day)->greaterThanOrEqualTo($weekStart)) ->sum('total'); $activeDaysCount = (int) $daysCollection->count(); $selectedDayLabel = $selectedDay ? \Carbon\Carbon::parse($selectedDay)->format('d/m/Y') : null; @endphp @extends('layouts/layoutMaster') @section('title', 'Registros') @section('content')
Revisa tus entregas cerradas y consulta el detalle por dia.
{{ $deliveries->total() }} resultado(s)
Prueba otro filtro de fecha para ver mas resultados.
Ajusta la busqueda para encontrar un pedido.
Elige uno de los dias superiores y veras el detalle de pedidos entregados.