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

Measure service demand, revenue, average duration, and booking mix.

@include('admin.reports.partials.nav', ['activeTab' => 'services'])
@include('admin.reports.partials.filters')
@forelse ($services as $service)
{{ $service['name'] }} {{ $service['revenue'] }}

{{ $service['bookings'] }} total bookings

@empty

No services found.

@endforelse
@forelse ($mostBooked as $service)
{{ $service['name'] }} {{ $service['bookings'] }}
@empty

No service bookings yet.

@endforelse
@forelse ($leastBooked as $service)
{{ $service['name'] }} {{ $service['bookings'] }}
@empty

No services found.

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