@extends('layouts.admin') @section('title', 'Статистика кабінетів — графік') @section('page_title', 'Статистика кабінетів — графік') @push('head') @endpush @section('page_actions') До списку @endsection @section('content') @php $selectedCabinetName = $selectedCabinet?->name ?? '—'; $selectedCabinetSlug = $selectedCabinet?->slug ?? '—'; $hasData = count($labels) > 0; @endphp {{-- ШАПКА СТОРІНКИ / ОПИС --}}
Дивись динаміку New / Young / Old та витрати по обраному кабінету за заданий період.
| Дата | New | Young | Old | Spend Young | Spend Old |
|---|---|---|---|---|---|
| {{ $r->period_start->format('Y-m-d') }} | {{ number_format((float)$r->new_connection, 2) }} | {{ number_format((float)$r->young_connection, 2) }} | {{ number_format((float)$r->old_connection, 2) }} | {{ number_format((float)$r->spend_young, 2) }} | {{ number_format((float)$r->spend_old, 2) }} |
| Середнє | {{ number_format($avgNew, 2) }} | {{ number_format($avgYoung, 2) }} | {{ number_format($avgOld, 2) }} | {{ number_format($avgSpendYoung, 2) }} | {{ number_format($avgSpendOld, 2) }} |