@extends(view_path('master')) @section('additional_head_tags') @endsection @section('top-search') @endsection @section('body')
{{-- NEWEST PRODUCTS --}} @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}") }})">
{{ \Str::limit($newest_product->name, 50) }}
@endforeach
@endif {{-- FEATURED PRODUCTS --}} @if($featured_products) @endif {{-- SUBSCRIPTION PLANS --}} @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
@if(strip_tags($subscription->description)) {!! $subscription->description !!} @elseif($subscription->specifications) @foreach($subscription->specifications ?? [] as $specification)
{{ $specification->text }}
@endforeach @endif
{{ __($subscription->name) }}
@endforeach
@endif {{-- POSTS --}} @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