@extends('layouts.master') @section('page-title', 'Artists') @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