@extends('layouts.admin') @section('title', 'Analytics') @section('content')

Success rate (all time)

{{ $successRate }}%

Downloads - last 30 days
@php $max = max(1, $daily->max() ?? 1); @endphp @if($daily->isEmpty())

No data yet.

@else {{-- Dependency-free CSS bar chart --}}

Peak day: {{ $max }} downloads

@endif
By media type
@if($byType->isEmpty())

No data yet.

@else @php $typeMax = max(1, $byType->max()); @endphp @foreach($byType as $type => $total)
{{ $type }} {{ number_format($total) }}
@endforeach @endif
@endsection