@extends('index') @section('pagination') @include('commons.song', ['songs' => $artist->songs, 'element' => 'genre']) @stop @section('content') {!! Advert::get('header') !!} @include('artist.nav', ['artist' => $artist])
{!! $artist->name !!}
@if(count($artist->albums))

{{ __('web.FULL_ALBUMS') }} / {{ __('web.SINGLES_EPS') }}

{{ __('web.SEE_ALL') }}
@include('commons.album', ['albums' => $artist->albums, 'element' => 'grid'])
@endif @if(count($artist->podcasts))

{{ __('web.TOP_PODCASTS') }}

{{ __('web.SEE_ALL') }}
@include('commons.podcast', ['podcasts' => $artist->podcasts, 'element' => 'grid'])
@endif @if(count($artist->songs)) @include('commons.toolbar.song', ['type' => 'artist', 'id' => $artist->id])
@yield('pagination')
@endif
{!! Advert::get('sidebar') !!}
@if(config('settings.artist_comments') && $artist->allow_comments) @include('comments.index', ['object' => (Object) ['id' => $artist->id, 'type' => 'App\Models\Artist', 'title' => $artist->name]]) @else

Comments are turned off.

@endif
@include('commons.activity', ['activities' => $artist->activities, 'type' => 'small'])
@if(isset($artist->similar) && count($artist->similar))

Related Artists

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