@extends('common::prerender.base')
@section('head')
@include($seoTagsView ?? 'seo.artist-page.seo-tags')
@endsection
@section('body')
{{ $artist->name }}
@if ($artist->profile?->description) {
{!! $artist->profile->description !!}
@endif
@if ($artist->profile?->links) {
@endif
@if ($artist->image_small) {
@endif
@isset($albums)
@foreach($albums as $album)
@endforeach
@endisset
@if($artist->similar)
Similar Artists
@foreach($artist->similar as $similarArtist)
@endforeach
@endif
@endsection