@extends('layouts.master') @section('page-title', $artist->name) @section('page-top') {{ $artist->name }} Home Artists Artist @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