@extends('layouts.landing-page') @section('content')
@php $coverTitle = [ 'Zombie', 'Hurt', 'Sound of Silence', 'Nothing Compares 2 U', 'All Along the Watchtower', 'I Will Always Love You', 'Mad World', 'Take On Me', 'Hallelujah', 'Sweet Dreams' ][$id % 10]; $coverArtist = [ 'Bad Wolves', 'Johnny Cash', 'Disturbed', 'Sinéad O\'Connor', 'Jimi Hendrix', 'Whitney Houston', 'Gary Jules', 'A-ha (MTV Unplugged)', 'Jeff Buckley', 'Marilyn Manson' ][$id % 10]; $originalArtist = [ 'The Cranberries', 'Nine Inch Nails', 'Simon & Garfunkel', 'Prince', 'Bob Dylan', 'Dolly Parton', 'Tears for Fears', 'A-ha', 'Leonard Cohen', 'Eurythmics' ][$id % 10]; $cover = [ 'id' => $id, 'title' => $coverTitle, 'artist' => $coverArtist, 'original_artist' => $originalArtist, 'year' => rand(1990, 2022), 'genre' => ['Rock', 'Pop', 'Alternative', 'R&B', 'Folk'][$id % 5], 'image' => 'https://picsum.photos/seed/cover' . $id . '/400/400', 'banner' => 'https://picsum.photos/seed/coverbanner' . $id . '/1200/400', 'plays' => rand(1, 10) . 'M', 'likes' => rand(50, 500) . 'K', 'duration' => rand(3, 4) . ':' . rand(10, 59), ]; $relatedCovers = [ ['title' => 'Zombie', 'artist' => 'Bad Wolves', 'original' => 'The Cranberries', 'img' => 'https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?q=80&w=300', 'id' => ($id + 1) % 20 + 1], ['title' => 'Mad World', 'artist' => 'Gary Jules', 'original' => 'Tears for Fears', 'img' => 'https://images.unsplash.com/photo-1453090927415-5f45085b65c0?q=80&w=300', 'id' => ($id + 2) % 20 + 1], ['title' => 'Take On Me', 'artist' => 'A-ha (MTV Unplugged)', 'original' => 'A-ha', 'img' => 'https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?q=80&w=300', 'id' => ($id + 3) % 20 + 1], ['title' => 'Hallelujah', 'artist' => 'Jeff Buckley', 'original' => 'Leonard Cohen', 'img' => 'https://images.unsplash.com/photo-1494232410401-ad00d5433cfa?q=80&w=300', 'id' => ($id + 4) % 20 + 1], ]; @endphp
{{ $cover['title'] }}
{{ $cover['title'] }}
COVER

{{ $cover['title'] }} by {{ $cover['original_artist'] }}

{{ $cover['artist'] }}

{{ $cover['year'] }}
{{ $cover['likes'] }} likes

About This Cover

{{ $cover['artist'] }}'s cover of "{{ $cover['title'] }}" brings a fresh perspective to the original song by {{ $cover['original_artist'] }}, reimagining the classic with unique arrangements and vocal interpretation.

Released in {{ $cover['year'] }}, this {{ $cover['genre'] }} rendition has gained popularity for its innovative approach while respecting the essence of the original song that fans have come to love.

Compare with Original

{{ $cover['title'] }}
Cover Version
{{ $cover['artist'] }} • {{ $cover['year'] }}
Original {{ $cover['title'] }}
Original Version
{{ $cover['original_artist'] }} • {{ rand(1970, 1990) }}

Artist

{{ $cover['artist'] }}

{{ $cover['artist'] }}

{{ ['Rock', 'Pop', 'Alternative', 'R&B', 'Folk'][$id % 5] }} Artist

More covers by {{ $cover['artist'] }}

@for($i = 1; $i <= 3; $i++)
Cover {{ $i }}
{{ ['Hurt', 'Love Will Tear Us Apart', 'Tainted Love', 'Take Me to Church'][$i % 4] }}
Originally by {{ ['Nine Inch Nails', 'Joy Division', 'Soft Cell', 'Hozier'][$i % 4] }}
@endfor

Similar Covers

@foreach($relatedCovers as $relatedCover)
{{ $relatedCover['title'] }}
Cover Song

{{ $relatedCover['title'] }}

{{ $relatedCover['artist'] }}

Originally by {{ $relatedCover['original'] }}

@endforeach

Comments ({{ rand(5, 30) }})

Y
@for($i = 1; $i <= 3; $i++)
User {{ $i }}
{{ ['JohnMusic', 'CoverFan22', 'MusicLover'][$i-1] }} {{ rand(1, 30) }} days ago

{{ [ 'I actually prefer this cover to the original! The way they reimagined the song is incredible.', 'Such a great interpretation. Brings new life to a classic song!', 'Love how they made this song their own while still respecting the original version.' ][$i-1] }}

@endfor
@endsection @section('scripts') @endsection