@extends('layouts.master') @section('page-title', $artist->name) @section('meta_description', 'Artist profile page on the No Agenda Art Generator for ' . $artist->name) @section('meta_og_img', $artworks->first() ? config('app.static_asset_url') . '/thumbnails/' . $artworks->first()->filename : config('app.static_asset_url') . '/v3/dist/naartgen-x-og-header.png') @section('page-top')

{{ $artist->name }}

@endsection @section('page-content')
{{ $artworks->links() }}
@include('profile.partials.single-artist-card')
{{-- end bio sidebar --}}
@foreach ($artworks as $artwork) @php $thisArtwork = $artwork; $thisPodcast = $artwork->podcast; $thisEpisode = $artwork->episode; @endphp
@include('artworks.card')
@endforeach
{{-- end artist content --}}
{{ $artworks->links() }}
@endsection