@extends('layouts.master') @section('page-title', 'Submitted Artwork') @section('page-top') Submitted Artwork Home Explore Artwork @endsection @section('page-content') {{ $artworks->links() }} View All @foreach ($podcasts as $podcast) {{ $podcast->name }} @endforeach @foreach ($artworks as $artwork) @php $thisArtwork = $artwork; $thisPodcast = $artwork->podcast; $thisEpisode = $artwork->episode; @endphp @include('artworks.card') @endforeach {{ $artworks->links() }} @endsection