@if ($latestItemsSection)

{{ $latestItemsSection->name }}

@if ($latestItemsSection->description)

{{ $latestItemsSection->description }}

@endif
@foreach ($latestItemsCategories as $category) @endforeach
@if ($latestItems->count() > 0)
@foreach ($latestItems as $item)
@include('themes.basic.partials.item', ['item' => $item])
@endforeach
@else

{{ translate('No Items Found') }}

@endif
@foreach ($latestItemsCategories as $category)
@if ($category->items->count() > 0)
@foreach ($category->items as $item)
@include('themes.basic.partials.item', ['item' => $item])
@endforeach
@else

{{ translate('No Items Found') }}

@endif
@endforeach
@endif