@extends('layouts.master') @section('page-title', 'Artists') @section('page-top')

{{ $artist->name }}

@endsection @section('page-content')
{{ $artworks->links() }}
{{ $artist->name }}'s Cover Photo
{{ $artist->name }}

{{ $artist->name }}

{{ $artist->location ?? 'No Agenda Nation' }}

Artist For {{ $artist->artworks->sortBy('created_at')->first()->created_at->diffForHumans(now(), Carbon\CarbonInterface::DIFF_ABSOLUTE) }}

@if ($artist->bio)

Bio:

{{ nl2br($artist->bio) }}

@endif
{{-- 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