@if ($title = Arr::get($config, 'title'))
{!! BaseHelper::clean($title) !!}
@endif @if($items = Arr::get($config, 'items')) @foreach($items as $item) @php $item = collect($item)->pluck('value', 'key'); $itemUrl = $item->get('url'); $itemLabel = $item->get('label'); $icon = $item->get('icon'); $iconImage = $item->get('icon_image'); @endphp @continue(!$itemUrl || !$itemLabel) @if ($iconImage) {{ RvMedia::image($iconImage) }} @elseif ($icon) @endif

{!! BaseHelper::clean($itemLabel) !!}

@endforeach @endif