@props([ 'items' => [], // [{image, title, subtitle}] 'columns' => 3 ])
merge([ 'class' => "fluent-frame-image fluent-frame-image--cols-{$columns}" ]) }} data-fluent-frame-image > @if(count($items)) @foreach($items as $item)
{{-- OVERLAY --}}
{{-- CONTENT --}}
@if(isset($item['title']))

{{ $item['title'] }}

@endif @if(isset($item['subtitle']))

{{ $item['subtitle'] }}

@endif
@endforeach @else {{-- SLOT CUSTOM (FULL CONTROL) --}} {{ $slot }} @endif