podcastartgenerator/site/resources/views/home/hero/slider/slider.blade.php

13 lines
442 B
PHP
Raw Normal View History

<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>