@extends('layouts.app') @section('content')
@php $statuses = ['Published', 'Draft', 'Processing']; @endphp @for ($i = 1; $i <= 10; $i++) @endfor
Cover Title Original Artist Date Created Status Stats Actions
Cover of Song {{ $i }}
{{ rand(1, 5) }}:{{ sprintf('%02d', rand(0, 59)) }}
Original Artist {{ $i }} {{ now()->subDays(rand(1, 30))->format('M d, Y') }} @php $status = $statuses[array_rand($statuses)]; $statusClass = [ 'Published' => 'bg-success', 'Draft' => 'bg-secondary', 'Processing' => 'bg-warning', ][$status]; @endphp {{ $status }}
{{ rand(100, 9999) }} {{ rand(10, 999) }} {{ rand(0, 50) }}

Cover Performance

{{ number_format(rand(5000, 50000)) }} Total Plays

Your covers are performing well! +{{ rand(5, 25) }}% this month
Likes
{{ rand(5, 15) }}%
Comments
{{ rand(5, 15) }}%
Shares
{{ rand(5, 15) }}%

Top Performing Covers

@for ($i = 1; $i <= 5; $i++)
{{ $i }}
Top Cover {{ $i }}
Original by Artist {{ $i }}
{{ number_format(rand(1000, 10000)) }}
@endfor
@endsection