{!! $title_name ?? '' !!}

@if (!empty($lists) && count($lists) > 0)
    @foreach ($lists as $i => $list_item)
  • @if (!empty($list_item['image']))
    @endif
    @if (!empty($list_item['categories']) && count($list_item['categories']) > 0) @foreach ($list_item['categories'] as $category) {!! $category['name'] ?? '' !!} @endforeach @endif

    {!! $list_item['name'] ?? '' !!}

    {{--
    {!! $list_item['desc'] !!}
    --}}

    {!! $list_item['desc'] ?? '' !!}

    @if (!empty($list_item['link'])) {{ __('frontend::frontend.btn.read_more') }} @endif
  • @endforeach
@endif