@forelse($pictures as $key => $image)
@php
$activeSlideAttr = '';
if ($loop->first) {
$activeSlideAttr = ' class="active" aria-current="true"';
}
@endphp
@empty
@endforelse
@forelse($pictures as $key => $image)
@php
$activeItemClass = '';
if ($loop->first) {
$activeItemClass = ' active';
}
@endphp
@php
$src = data_get($image, 'url.large');
$webpSrc = data_get($image, 'url.webp.large');
$alt = $titleSlug . '-big-' . $key;
echo generateImageHtml($src, $alt, $webpSrc, ['class' => 'd-block']);
@endphp
@empty
@endforelse