@extends('frontend.layouts.app') @section('content')
@if(!empty($page?->banner_image))
@endif

Official Music

{{ strtoupper($page->title ?? 'Music') }}

{{ $page->meta_description ?? 'Discover official releases, albums, singles and featured music from Stonebwoy.' }}

@if(!empty($page?->content))
{!! $page->content !!}
@endif

Latest Releases

Music Collection

@forelse($music as $index => $item)
@if(!$item->cover_image)
Cover Art
@endif
{{ ucfirst($item->type ?? 'Release') }}

{{ $item->title }}

@if($item->release_date) {{ \Carbon\Carbon::parse($item->release_date)->format('F d, Y') }} @else Official Release @endif

@if($item->description)

{{ \Illuminate\Support\Str::limit(strip_tags($item->description), 120) }}

@endif
@if($item->spotify_link) Spotify @endif
@empty
No music releases available yet.
@endforelse
{{ $music->links() }}
@endsection