@extends(view_path('master'))
@section('additional_head_tags')
@endsection
@section('top-panel')
@endsection
@section('body')
@if($newest_products->count())
@cards('axies-card', $newest_products, 'item')
@endif
@if($trending_products->count())
@cards('axies-card', $trending_products, 'item')
@endif
@if($featured_products->count())
@cards('axies-card', $featured_products, 'item')
@endif
@if($free_products->count())
@cards('axies-card', $free_products, 'item')
@endif
@if(config('app.blog.enabled'))
@if($posts->count())
@foreach($posts as $post)
@endforeach
@endif
@endif
@endsection