@extends('layouts.marketing') @section('title', __('marketing.blog.title')) @section('content')

{{ __('marketing.blog.hero_title') }}

{{ __('marketing.blog.hero_description') }}

{{ __('marketing.blog.hero_cta') }}

{{ __('marketing.blog.posts_title') }}

@if ($posts->count() > 0)
@foreach ($posts as $post)
@if ($post->featured_image) {{ $post->getTranslation('title', app()->getLocale()) }} @endif

{{ $post->getTranslation('title', app()->getLocale()) }}

{{ Str::limit($post->getTranslation('excerpt', app()->getLocale()), 150) }}

{{ __('marketing.blog.published_at') }} {{ $post->published_at->format(__('date.format')) }}

{{ __('marketing.blog.read_more') }}
@endforeach
@if ($posts->hasPages())
{{ $posts->links() }}
@endif @else

{{ __('marketing.blog.empty') }}

@endif
@endsection