podcastartgenerator/site/resources/views/home/recents/section.blade.php
Paul Couture c4398c641e feat/factory_creation (#1)
Prepping for launch.

Reviewed-on: #1
Co-authored-by: Paul Couture <paul@paulcouture.com>
Co-committed-by: Paul Couture <paul@paulcouture.com>
2023-12-14 11:33:03 -06:00

24 lines
819 B
PHP

{{-- Start Live Auction --}}
<section class="ptb-120 live-auction">
<div class="container">
<div class="section-title">
<span class="subtitle">Artworks</span>
<h2>Recent Artwork Submissons</h2>
</div>
{{-- End .section-title --}}
<div class="slider slick-activation-001 slick-gutter-15 slick-pagination-50">
@foreach ($recentSubmissions as $recent)
@php
$thisArtwork = $recent;
$thisPodcast = $recent->podcast;
$thisEpisode = $recent->episode;
@endphp
@include('artworks.card')
@endforeach
{{-- End .slick-activation-01 --}}
</div>
{{-- End .container --}}
</div>
</section>
{{-- End Live Auction --}}