2023-08-22 17:04:37 -04:00
|
|
|
<div class="slider slider-activation-banner-4 slick-gutter-15 slick-pagination-50">
|
|
|
|
@foreach($recentEpisodes as $recentEpisode)
|
|
|
|
@if ($recentEpisode->artwork)
|
2023-12-14 12:30:49 -05:00
|
|
|
@php
|
|
|
|
$thisArtwork = $recentEpisode->artwork;
|
|
|
|
$thisEpisode = $recentEpisode;
|
|
|
|
$thisPodcast = $recentEpisode->podcast;
|
|
|
|
@endphp
|
|
|
|
@include('artworks.card')
|
2023-08-22 17:04:37 -04:00
|
|
|
@endif
|
|
|
|
@endforeach
|
2023-12-14 12:30:49 -05:00
|
|
|
</div>
|