@extends('front.tendra.master') @section('body') {{-- HERO --}}
{{ config('app.search_header', config('app.title')) }}
{{-- USER PERSONAL NOTIFICATION --}} @if(config('app.users_notif')) @endif {{-- SECTIONS --}}
{{-- NEWEST ITEMS --}}
{{ __('Our newest items') }}
{{ __('Explore our newest Digital Products, from Development to Other Teaching & Academics, we always have something interesting for you') }}
@foreach($newest_products as $product)
cover}") }}');"> @if($product->has_promo()) {{ $product->promo_price }} @else {{ price($product->price) }} @endif
{{ $product->name }}
@endforeach
{{-- FEATURED ITEMS --}}
{{-- PRICING TABLE --}}
{{ __('Our pricing plans') }}
{{ __('Explore our pricing plans, from Standard to Professional, choose the one that meets your needs.') }}
@foreach($subscriptions as $subscription)
{{ $subscription->name }}
{{ $subscription->subheading }}
{{ price($subscription->price) }} / {{ __($subscription->title) }}
{{ __('Included features') }}
@if(strip_tags($subscription->description)) {!! $subscription->description !!} @elseif($subscription->specifications) @foreach($subscription->specifications ?? [] as $specification)
{{ $specification->text }}
@endforeach @endif
@endforeach
@if(intval(config('app.blog.enabled')))
{{-- BLOG --}}
{{ __('Our latest news') }}
{{ __('Explore our latest articles for more ideas and inspiration, technology, design, tutorials, business and much more') }}
@foreach($posts as $post)
{{ $post->created_at->format('J m, Y') }}
@foreach(array_filter(array_slice(array_map('trim', explode(',', $post->tags)), 0, 3)) as $tag) {{ $tag }} @endforeach
{{ $post->name }}
{{ $post->views }}
{{ __('Read more') }}
@endforeach
@endif
@endsection