13 lines
442 B
PHP
13 lines
442 B
PHP
|
<div class="slider slider-activation-banner-4 slick-gutter-15 slick-pagination-50">
|
||
|
@foreach($recentEpisodes as $recentEpisode)
|
||
|
@if ($recentEpisode->artwork)
|
||
|
@php
|
||
|
$thisArtwork = $recentEpisode->artwork;
|
||
|
$thisEpisode = $recentEpisode;
|
||
|
$thisPodcast = $recentEpisode->podcast;
|
||
|
@endphp
|
||
|
@include('artworks.card')
|
||
|
@endif
|
||
|
@endforeach
|
||
|
</div>
|