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

All Songs

--}}
@php $dummySongs = [ [ 'id' => 1, 'title' => 'Summer Vibes', 'artist' => 'DJ Sunshine', 'album' => 'Beach Party', 'genre' => 'Electronic', 'duration' => 195, 'created_at' => '2 days ago', 'play_count' => 1245, 'cover_image' => null, ], [ 'id' => 2, 'title' => 'Midnight Dreams', 'artist' => 'Luna Eclipse', 'album' => 'Night Sky', 'genre' => 'Chill', 'duration' => 242, 'created_at' => '1 week ago', 'play_count' => 3780, 'cover_image' => null, ], [ 'id' => 3, 'title' => 'Urban Flow', 'artist' => 'City Beats', 'album' => 'Downtown', 'genre' => 'Hip-Hop', 'duration' => 187, 'created_at' => '2 weeks ago', 'play_count' => 987, 'cover_image' => null, ], ]; $hasSongs = count($dummySongs) > 0; @endphp @if ($hasSongs)
@foreach ($dummySongs as $song) @endforeach
Title Album Genre Duration Uploaded Plays
{{ $song['title'] }}
{{ $song['artist'] }}
{{ $song['album'] ?? 'Single' }} {{ $song['genre'] }} {{ gmdate('i:s', $song['duration']) }} {{ $song['created_at'] }} {{ number_format($song['play_count']) }}
@else

No songs found

You haven't uploaded any songs yet. Start sharing your music with the world!

@endif
Total Plays
{{ number_format(6012) }}
Last 30 days
8%
Avg. Engagement
4.2min
Listen Time
12%
Downloads
158
Conversion Rate
4.6%
@endsection @section('scripts') @endsection