@extends('front_end.layouts.home') @php $showRightSidebar = false; @endphp @section('title', $article->title . ' - Help Center') @section('meta') @if ($article->meta_title) @endif @if ($article->meta_description) @endif @endsection @section('content')

{{ $article->title }}

{{ $topic->title }} {{ $article->estimated_reading_time ?? '—' }} min read Updated {{ $article->updated_at?->diffForHumans() ?? 'recently' }}
@if ($article->hero_image) {{ $article->title }} @endif
@if ($article->summary)
{{ $article->summary }}
@endif
{!! $article->content !!}
Was this article helpful?
Related articles
@forelse ($relatedArticles as $related) {{ $related->title }}
{{ $related->estimated_reading_time ?? '—' }} min
@empty No related articles yet. @endforelse
Need more help?

If you still have questions or feedback, let us know. We're always listening.

Email Support Back to Help Center
@endsection