@extends('front_end.layouts.home') @php $showRightSidebar = false; @endphp @section('title', $topic->title . ' - Help Center') @section('content')

{{ $topic->title }}

{{ $topic->description }}

@if ($featuredArticles->isNotEmpty()) @endif
All articles
@forelse ($topic->articles as $article)
{{ $article->title }}

{{ Str::limit(strip_tags($article->summary ?? $article->content), 160) }}

{{ $article->estimated_reading_time ?? '—' }} min read {{ $article->updated_at?->diffForHumans() ?? '—' }}
Read
@if (!$loop->last)
@endif @empty

Articles assigned to this topic will appear here.

@endforelse
Quick facts
  • {{ $topic->articles->count() }} articles
  • Updated {{ $topic->updated_at?->diffForHumans() ?? 'recently' }}
  • Icon: {{ $topic->icon ?? 'none' }}
Explore other topics
@forelse ($relatedTopics as $related) {{ $related->title }} {{ $related->articles()->published()->count() }} @empty No other topics yet. @endforelse
@endsection