@component('site.components.panel', [ 'title' => $title, 'actionLabel' => $actionLabel, 'actionHref' => $actionHref, 'className' => 'sl-search-results__panel', ]) @php $isEmpty = method_exists($items, 'isEmpty') ? $items->isEmpty() : count($items) === 0; @endphp @if ($isEmpty)

{{ $emptyMessage }}

@else
@foreach ($items as $item) @include('site.new.partials.search.result-card', ['item' => $item]) @endforeach
@endif @endcomponent