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

Published Songs

@php $songTitles = [ 'Blinding Lights', 'Save Your Tears', 'Levitating', 'Stay', 'Industry Baby', 'Good 4 U', 'Montero', 'Peaches', 'Butter', 'Dynamite', 'Drivers License', 'Kiss Me More', 'Bad Habits', 'Shivers', 'Heat Waves', ]; $artists = [ 'The Weeknd', 'Dua Lipa', 'Justin Bieber', 'Lil Nas X', 'Olivia Rodrigo', 'BTS', 'Ed Sheeran', 'Adele', 'Billie Eilish', 'Glass Animals', ]; $genres = ['Pop', 'Rock', 'Hip Hop', 'Electronic', 'Jazz']; @endphp @for ($i = 0; $i < 15; $i++) @php $title = $songTitles[$i % count($songTitles)]; $artist = $artists[$i % count($artists)]; $genre = $genres[rand(0, count($genres) - 1)]; $releaseDate = date('Y-m-d', strtotime('-' . rand(1, 365) . ' days')); $plays = rand(10000, 5000000); $revenue = rand(1000000, 100000000); @endphp @endfor
Title Artist Genre Release Date Plays Revenue Actions
{{ $title }}
{{ $artist }} {{ $genre }} {{ $releaseDate }} {{ number_format($plays) }} Rp {{ number_format($revenue, 0, ',', '.') }}
@endsection @section('scripts') @endsection