@forelse($post->pictures as $key => $image)
@php
$activeSlideAttr = '';
if ($loop->first) {
$activeSlideAttr = ' class="active" aria-current="true"';
}
@endphp
@empty
@endforelse
@forelse($post->pictures as $key => $image)
@php
$activeItemClass = '';
if ($loop->first) {
$activeItemClass = ' active';
}
@endphp
{!! imgTag($image->filename, 'big', $picAttr) !!}
@empty
@endforelse