@extends('layouts.admin', [ 'title' => 'Reports', 'pageTitle' => 'Reports', 'active' => 'reports', ]) @section('content')

Track bookings, revenue, staff output, services, invoices, customers, and reminders from one analytics hub.

@include('admin.reports.partials.nav', ['activeTab' => 'overview'])
@include('admin.reports.partials.filters')
@foreach ($summary as $item)

{{ $item['label'] }}

{{ $item['value'] }}

{{ $item['note'] }}

@endforeach
@if ($trendBars->isNotEmpty())
@foreach ($trendBars as $bar)
{{ $bar['label'] }}
@endforeach
@else
No bookings in this range.
@endif
@forelse ($statusMix as $status)
{{ $status['label'] }} {{ $status['percent'] }}%
@empty

No booking statuses found.

@endforelse
@forelse ($topServices as $service) {{ $service['name'] }} {{ $service['bookings'] }} {{ $service['revenue'] }} {{ $service['rank'] }} @empty No services found for this range. @endforelse
@endsection