@if ($newSongs)
@php
$index = 0;
@endphp
@forelse ($newSongs as $release)
@php
$index++;
$imageUrl = app(\App\Services\SongServices::class)->getCoverImageS3($release, 'md');
$artistArray = app(\App\Services\SongServices::class)::getArtistContributor($release->songContributors);
$names = array_column($artistArray, 'name');
$artistSeparated = implode(', ', $names);
@endphp
@empty
belum terdapat data
@endforelse
@else
belum terdapat data
@endif
{{-- @php
$newReleases = [
[
'title' => 'Midnight Rain',
'artist' => 'Taylor Swift',
'date' => 'Oct 21, 2023',
'img' => 'https://images.unsplash.com/photo-1494232410401-ad00d5433cfa?q=80&w=300',
],
[
'title' => 'Last Night',
'artist' => 'Morgan Wallen',
'date' => 'Oct 20, 2023',
'img' => 'https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?q=80&w=300',
],
[
'title' => 'Flowers',
'artist' => 'Miley Cyrus',
'date' => 'Oct 19, 2023',
'img' => 'https://images.unsplash.com/photo-1453090927415-5f45085b65c0?q=80&w=300',
],
[
'title' => 'Kill Bill',
'artist' => 'SZA',
'date' => 'Oct 18, 2023',
'img' => 'https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?q=80&w=300',
],
[
'title' => 'Anti-Hero',
'artist' => 'Taylor Swift',
'date' => 'Oct 17, 2023',
'img' => 'https://images.unsplash.com/photo-1470225620780-dba8ba36b745?q=80&w=300',
],
[
'title' => 'Unholy',
'artist' => 'Sam Smith',
'date' => 'Oct 16, 2023',
'img' => 'https://images.unsplash.com/photo-1496293455970-f8581aae0e3b?q=80&w=300',
],
[
'title' => 'As It Was',
'artist' => 'Harry Styles',
'date' => 'Oct 15, 2023',
'img' => 'https://images.unsplash.com/photo-1587653263995-422546a7a559?q=80&w=300',
],
[
'title' => 'About Damn Time',
'artist' => 'Lizzo',
'date' => 'Oct 14, 2023',
'img' => 'https://images.unsplash.com/photo-1526218626217-dc65a29bb444?q=80&w=300',
],
[
'title' => 'Stay With Me',
'artist' => 'Calvin Harris',
'date' => 'Oct 13, 2023',
'img' => 'https://images.unsplash.com/photo-1571266028997-41675a1b9b1f?q=80&w=300',
],
[
'title' => 'Break My Soul',
'artist' => 'Beyoncé',
'date' => 'Oct 12, 2023',
'img' => 'https://images.unsplash.com/photo-1513883049090-d91fb58d69e1?q=80&w=300',
],
];
@endphp
@foreach ($newReleases as $index => $release)
@endforeach --}}