@props([ 'images' => [ [ 'url' => '', 'alt' => '', 'title' => '', ], ], ]) @php $isCarousel = count($images) > 1; @endphp
@if ($isCarousel)
@foreach ($images as $image)
{{ $image['alt'] }}
@endforeach
@else @foreach ($images as $image) @php $titleImage = $image['title'] . ' - ' . config('company.name'); @endphp {{ $image['alt'] }} @endforeach @endif

{{ $title ?? '' }}

{{ $slot }}