@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)

{{ $album['name'] }} - {{ $album['release_date'] }}

@endforeach @endisset @if($artist->similar)

Similar Artists

@foreach($artist->similar as $similarArtist)

{{ $similarArtist['name'] }}

@endforeach @endif @endsection