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

Submitted Artwork

@endsection @section('page-content')
{{ $artworks->links() }}
@foreach ($podcasts as $podcast) @endforeach
@foreach ($artworks as $artwork) @php $thisArtwork = $artwork; $thisPodcast = $artwork->podcast; $thisEpisode = $artwork->episode; @endphp
@include('artworks.card')
@endforeach
{{ $artworks->links() }}
@endsection