@extends('index') @section('content') @include('album.nav', ['album' => $album]) {!! Advert::get('header') !!}
{!! $album->title !!}
@include('commons.toolbar.song', ['type' => 'album', 'id' => $album->id])
@include('commons.song', ['songs' => $album->songs, 'element' => 'genre'])
{!! Advert::get('sidebar') !!}

Comments

@if(config('settings.album_comments') && $album->allow_comments) @include('comments.index', ['object' => (Object) ['id' => $album->id, 'type' => 'App\Models\Album', 'title' => $album->title]]) @else

Comments are turned off.

@endif
@if(isset($artistTopSongs) && count($artistTopSongs))

Artist's Top Songs

{{ __('web.SEE_ALL') }}
    @include('commons.song', ['songs' => $artistTopSongs, 'element' => 'snapshot'])
@endif @if(isset($artists) && count($artists))

Related Artists

{{ __('web.SEE_ALL') }}
    @include('commons.artist', ['artists' => $artists, 'element' => 'search'])
@endif
{!! Advert::get('footer') !!} @endsection