@extends(view_path('master')) @section('additional_head_tags') @endsection @section('top-search') @endsection @section('body')
@if($newest_products->count())
{{ __('Our Newest Items') }}
{{ __('Explore our newest Digital Products, from :first_category to :last_category, we always have something interesting for you.', ['first_category' => collect(config('categories.category_parents'))->first()->name ?? null, 'last_category' => collect(config('categories.category_parents'))->last()->name ?? null]) }}
@foreach($newest_products as $newest_product) cover}") }})" data-detail="{{ json_encode($newest_product) }}"> @endforeach
@endif @if($featured_products) @endif @if($free_products->count())
{{ __('Our Free Items') }}
{{ __('Explore our free items of the week') }}
@foreach($free_products as $free_product)
cover}") }}')">
{{ $free_product->name }}
@endforeach
@endif @if(config('app.subscriptions.enabled') && $subscriptions->count())
{{ __('Our Pricing Plans') }}
{{ __('Explore our pricing plans, from :first to :last, choose the one that meets your needs.', ['first' => $subscriptions->first()->name, 'last' => $subscriptions->last()->name]) }}
@foreach($subscriptions as $subscription)
{{ price($subscription->price) }} @if($subscription->title)/ {{ __($subscription->title) }}@endif
@foreach(explode("\n", $subscription->description) as $note)
{{ $note }}
@endforeach
{{ __($subscription->name) }}
@endforeach
@endif @if(config('app.blog.enabled')) @if($posts->count())
{{ __('Our Latest News') }}
{{ __('Explore our latest articles for more ideas and inspiration, technology, design, tutorials, business and much more.') }}
@foreach($posts as $post)
cover}") }}" alt="{{ $post->name }}">
{{ shorten_str($post->short_description, 100) }}
@endforeach
@endif @endif
@endsection