@foreach ($songs as $song)
@php
// Extract filename from the 3rd image variant (small)
$coverImages = explode(',', $song->cover_image ?? '');
$smallCoverFile = $coverImages[2] ?? null;
// Get just the filename from the path (e.g. "cover_abc_sm.jpeg")
$filename = $smallCoverFile ? basename($smallCoverFile) : null;
// Generate image URL via route
$imageUrl = $filename
? route('user.songs.image', ['filename' => $filename])
: 'https://via.placeholder.com/500/500?random=' . $song->id;
@endphp
@php
$creatorName =
$song->songContributors
->where('role', 'Composer')
->pluck('user.name')
->filter()
->implode(', ') ?? '-';
if (empty($creatorName)) {
$creatorName = '-';
}
$artistName =
$song->songContributors->where('role', 'Artist')->pluck('user.name')->filter()->implode(', ') ??
'-';
if (empty($artistName)) {
$artistName = 'No Artist';
}
@endphp
@endforeach
@php
$recentSongs = [
[
'title' => 'Blinding Lights',
'artist' => 'The Weeknd',
'img' => 'https://images.unsplash.com/photo-1470225620780-dba8ba36b745?q=80&w=300',
],
[
'title' => 'Bad Guy',
'artist' => 'Billie Eilish',
'img' => 'https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?q=80&w=300',
],
[
'title' => 'Stay',
'artist' => 'The Kid LAROI, Justin Bieber',
'img' => 'https://images.unsplash.com/photo-1514525253161-7a46d19cd819?q=80&w=300',
],
[
'title' => 'Levitating',
'artist' => 'Dua Lipa',
'img' => 'https://images.unsplash.com/photo-1496293455970-f8581aae0e3b?q=80&w=300',
],
[
'title' => 'Anti-Hero',
'artist' => 'Taylor Swift',
'img' => 'https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?q=80&w=300',
],
[
'title' => 'As It Was',
'artist' => 'Harry Styles',
'img' => 'https://images.unsplash.com/photo-1501612780327-45045538702b?q=80&w=300',
],
[
'title' => 'Blinding Lights',
'artist' => 'The Weeknd',
'img' => 'https://images.unsplash.com/photo-1470225620780-dba8ba36b745?q=80&w=300',
],
[
'title' => 'Bad Guy',
'artist' => 'Billie Eilish',
'img' => 'https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?q=80&w=300',
],
[
'title' => 'Stay',
'artist' => 'The Kid LAROI, Justin Bieber',
'img' => 'https://images.unsplash.com/photo-1514525253161-7a46d19cd819?q=80&w=300',
],
[
'title' => 'Levitating',
'artist' => 'Dua Lipa',
'img' => 'https://images.unsplash.com/photo-1496293455970-f8581aae0e3b?q=80&w=300',
],
[
'title' => 'Anti-Hero',
'artist' => 'Taylor Swift',
'img' => 'https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?q=80&w=300',
],
[
'title' => 'As It Was',
'artist' => 'Harry Styles',
'img' => 'https://images.unsplash.com/photo-1501612780327-45045538702b?q=80&w=300',
],
];
@endphp
@foreach ($recentSongs as $song)
@endforeach