@extends('layouts.marketing') @section('title') {{ $post->getTranslation('title', app()->getLocale()) }} - {{ __('blog.title') }} @endsection @section('content')

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

{{ __('blog.by') }} {{ $post->author->name ?? __('blog.team') }} | {{ $post->published_at->format(__('date.format')) }}

@if ($post->featured_image) {{ $post->getTranslation('title', app()->getLocale()) }} @endif
{!! $post->getTranslation('content', app()->getLocale()) !!}
{{ __('blog.back') }}
@endsection