@extends('layouts.app-admin') @section('content')
Total Songs
3,842
8.3% vs last period
Total Plays
1.2M
12.7% vs last period
Downloads
245K
9.2% vs last period
New Uploads
382
15.8% vs last period

Content Upload Trends

Content by Type

Content type chart would appear here

@php $contentTypes = [ [ 'name' => 'Original Songs', 'count' => 2450, 'percentage' => 63.8, 'color' => 'primary', ], [ 'name' => 'Cover Songs', 'count' => 1250, 'percentage' => 32.5, 'color' => 'success', ], [ 'name' => 'Instrumentals', 'count' => 142, 'percentage' => 3.7, 'color' => 'warning', ], ]; @endphp @foreach ($contentTypes as $type)
{{ $type['name'] }} {{ number_format($type['count']) }} ({{ $type['percentage'] }}%)
@endforeach

Genre Distribution

Genre distribution chart would appear here

@php $genres = [ ['name' => 'Pop', 'percentage' => 45, 'color' => 'primary'], ['name' => 'Hip Hop', 'percentage' => 30, 'color' => 'success'], ['name' => 'Rock', 'percentage' => 15, 'color' => 'warning'], ['name' => 'Electronic', 'percentage' => 10, 'color' => 'info'], ]; @endphp @foreach ($genres as $genre)
{{ $genre['name'] }} {{ $genre['percentage'] }}%
@endforeach

Top Performing Songs

@php $topSongs = [ [ 'title' => 'Blinding Lights', 'artist' => 'The Weeknd', 'genre' => 'Pop', 'plays' => '125,382', 'downloads' => '28,450', 'engagement' => '92%', ], [ 'title' => 'Save Your Tears', 'artist' => 'The Weeknd', 'genre' => 'Pop', 'plays' => '98,245', 'downloads' => '21,350', 'engagement' => '88%', ], [ 'title' => 'Levitating', 'artist' => 'Dua Lipa', 'genre' => 'Pop', 'plays' => '87,120', 'downloads' => '18,920', 'engagement' => '85%', ], [ 'title' => 'Stay', 'artist' => 'Justin Bieber', 'genre' => 'Pop', 'plays' => '76,450', 'downloads' => '15,780', 'engagement' => '83%', ], [ 'title' => 'Industry Baby', 'artist' => 'Lil Nas X', 'genre' => 'Hip Hop', 'plays' => '68,290', 'downloads' => '14,520', 'engagement' => '80%', ], ]; @endphp @foreach ($topSongs as $index => $song) @endforeach
Title Artist Genre Plays Downloads Engagement
{{ $song['title'] }}
{{ $song['artist'] }} {{ $song['genre'] }} {{ $song['plays'] }} {{ $song['downloads'] }}
{{ $song['engagement'] }}

Engagement by Time of Day

Time-based engagement chart would appear here

Content Engagement Metrics

@php $metrics = [ [ 'name' => 'Average Play Duration', 'value' => '3:42', 'change' => '+0:15', 'trend' => 'up', ], [ 'name' => 'Completion Rate', 'value' => '68.5%', 'change' => '+2.3%', 'trend' => 'up', ], [ 'name' => 'Repeat Play Rate', 'value' => '24.8%', 'change' => '+1.5%', 'trend' => 'up', ], [ 'name' => 'Play to Download Ratio', 'value' => '5.7%', 'change' => '-0.8%', 'trend' => 'down', ], ]; @endphp @foreach ($metrics as $metric)
{{ $metric['name'] }}

{{ $metric['value'] }}

{{ $metric['change'] }}
@endforeach

Content Growth Projections

Content growth projection chart would appear here

Projected Songs
4,850
Projected Plays
2.5M
Projected Downloads
450K
@endsection @section('scripts') @endsection