@extends('layouts.app') @section('content')

Your Uploaded Songs

{{ rand(10, 50) }} Uploads
@php $genres = ['Pop', 'Rock', 'Hip Hop', 'R&B', 'Jazz', 'Electronic', 'Classical']; $statuses = ['Published', 'Draft', 'Pending Review']; $licenses = ['Standard', 'Premium', 'Exclusive']; @endphp @for ($i = 1; $i <= 10; $i++) @endfor
Song Genre Uploaded Status License Stats Revenue Actions
Composed Song {{ $i }}
{{ rand(1, 5) }}:{{ sprintf('%02d', rand(0, 59)) }}
{{ $genres[array_rand($genres)] }} {{ now()->subDays(rand(1, 365))->format('M d, Y') }} @php $status = $statuses[array_rand($statuses)]; $statusClass = [ 'Published' => 'bg-success', 'Draft' => 'bg-secondary', 'Pending Review' => 'bg-warning', ][$status]; @endphp {{ $status }} @php $license = $licenses[array_rand($licenses)]; $licenseClass = [ 'Standard' => 'bg-blue-lt', 'Premium' => 'bg-purple-lt', 'Exclusive' => 'bg-gold-lt', ][$license]; @endphp {{ $license }}
{{ number_format(rand(100, 50000)) }} {{ rand(0, 50) }}
Rp {{ number_format(rand(50000, 5000000)) }}

License Management

Standard License
{{ rand(5, 30) }} songs
Starting from
Rp {{ number_format(rand(50000, 200000)) }}
Premium License
{{ rand(3, 20) }} songs
Starting from
Rp {{ number_format(rand(200000, 500000)) }}
Exclusive License
{{ rand(1, 10) }} songs
Starting from
Rp {{ number_format(rand(1000000, 5000000)) }}

Revenue Overview

Rp {{ number_format(rand(5000000, 50000000)) }}

Total revenue from all uploads +{{ rand(10, 30) }}% this month
Standard
{{ rand(5, 15) }}%
Premium
{{ rand(10, 25) }}%
Exclusive
{{ rand(15, 40) }}%

Top Revenue Generators

@for ($i = 1; $i <= 5; $i++)
{{ $i }}
Top Song {{ $i }}
{{ $licenses[array_rand($licenses)] }} License
Rp {{ number_format(rand(500000, 5000000)) }}
@endfor
@endsection