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