@extends('front.axies.master') @section('body')
@foreach(config('categories.category_parents', []) as $category)
{{ $category['name'] }}
@if(!$loop->last)   @endif @endforeach
{{ __('Your Digital Products Storefront') }}
{{ __('Discover a wide range of digital products, from software to eBooks, designed to enhance your digital experience and creativity') }}.
{{ __('Trending items') }}
@if(fileExists(public_path("storage/images/side-image.png")))
@endif
{{ __('Latest items') }}
{{ __('Explore our top-rated digital products, handpicked for their quality and innovation. From cutting-edge software to captivating eBooks, find everything you need to elevate your digital journey') }}
@if($newest_products->count())
@foreach(array_slice($newest_products->all(), 0, 6) as $newest_product) @endforeach
@foreach(array_slice($newest_products->all(), 6) as $newest_product)
cover}") }}" class="rounded-[.25rem]">
@endforeach
@endif
@if($trending_products->count()) @endif
{{ __('Featured items') }}
{{ __("Explore a handpicked assortment of our top products from this week's lineup") }}
@if($featured_products->count())
@foreach($featured_products as $featured_product)
@endforeach
@endif
@if(intval(config('app.blog.enabled')))
{{ __('From our blog') }}
{{ __('Explore our diverse blog posts, offering insights, tips, and updates on the latest trends in the digital world') }}
@if($posts->count())
@foreach($posts as $post)
cover}") }}" class="rounded-[.25rem]"> @isset($post->category['slug']) {{ $post->category['name'] }} @endisset
@endforeach
@endif
@endif
@endsection