@if (isset($titleParts))
@foreach ($titleParts as $item)
{!! $item['title'] !!}
{{-- {!! $breakLine == $loop->iteration ? '
' : '' !!} --}}
@endforeach
@elseif(isset($title))
@foreach ($title as $item)
{!! $item['text'] !!}
@endforeach
@endif
@if (isset($listItems) && !empty($listItems))
@foreach ($listItems as $item)
{{ $item['title'] }}
@endforeach
@endif
@if (isset($hasButton) && $hasButton)
@include('components.button', [
'text' => $text ?? __('messages.VIEW_ALL'),
'TextDark' => $TextDark ?? true,
'BgDark' => $BgDark ?? true,
'hasText' => $hasText ?? true,
'hasBg' => $hasBg ?? true,
'link' => $link ?? 'null',
])