@extends('layouts.master') @section('page-title', 'Approve Artwork') @section('meta_description', 'Approve Artwork to have it published for non-priviledged eyeballs to view.') @section('page-top') Artwork Pending Approval 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 “{{ $thisArtwork->title }}” {{-- End .header --}} Artwork By {{ $thisArtwork->artist->name ?? 'Unknown' }} {{-- End .product-owner --}} @csrf Approve and Publish @endforeach {{ $artworks->links() }} @endsection