@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
{{-- FEATURED STORIES --}} @if(isset($featured_stories) && $featured_stories->count())
{{ __('Featured Stories') }}
{{ __('Discover captivating audio stories and narratives crafted to entertain, educate, and inspire') }}
@foreach($featured_stories as $story)
@if($story->cover_image) @else
@endif
@if(!$story->is_free) {{ config('payments.currency_symbol', '$') }}{{ $story->price }} @endif @if($story->duration) {{ $story->duration }} @endif
{{ \Str::limit($story->title, 50) }}
{{ $story->category->name ?? __('Uncategorized') }}
@if($story->description)
{{ \Str::limit($story->description, 80) }}
@endif
@endforeach
@endif {{-- 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_slice(array_map('trim', explode(',', $post->tags)), 0, 3) as $tag) {{ $tag }} @endforeach
{{ $post->name }}
{{ $post->views }}
{{ __('Read more') }}
@endforeach
@endsection