@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
$picAttr = [
'alt' => $titleSlug . '-big-' . $key,
'class' => 'd-block',
];
@endphp
{!! imgTag(data_get($image, 'filename'), 'big', $picAttr) !!}
@empty
@endforelse