@extends('layouts.site') @section('meta_title') {{ locale_field($article, 'title') }} — {{ __('site.nav_blog') }} @endsection @section('title') {{ locale_field($article, 'title') }} @endsection @section('content') @if ($article->category_id) @endif @php $locale = app()->getLocale(); $card = \App\Support\Cards\ArticleCardPresenter::from($article); $hasGallery = isset($gallery) && ! $gallery->isEmpty() && ($gallery->images->isNotEmpty() || $gallery->videos->isNotEmpty()); $body = locale_field($article, 'summary'); $excerpt = locale_field($article, 'excerpt'); $title = locale_field($article, 'title'); @endphp
@if ($article->image)
@endif
@if ($article->category) {{ locale_category_name($article->category) }} @else {{ __('site.nav_blog') }} @endif @if ($card['featured']) {{ __('site.featured') }} @endif

{{ $title }}

@if ($card['date']) @endif {{ __('site.card_reading_time', ['min' => $card['reading_time']]) }}
@if ($hasGallery)
@endif
@if ($excerpt)

{{ $excerpt }}

@endif @if ($body)
{!! nl2br(e($body)) !!}
@endif @feature('repair_services') @endfeature
@include('partials.site.related-rail', ['rail' => $relatedRail ?? null]) @feature('repair_services')

{{ __('site.article_assistant_title') }}

{{ brand_trans('site.article_assistant_sub') }}

@endfeature
@endsection