@extends('layouts.app') @section('title', $topic['title'] . ' — Help Center') @section('nav_help', 'bg-teal-50 text-teal-700 font-semibold') @section('content')
{{-- Breadcrumb + position in the sequence --}}
Help Center Topic {{ $topic['number'] }} of {{ $total }}

{{ $topic['title'] }}

{{ $topic['summary'] }}

@include('help.topics.' . $topic['slug'])
@isset($topic['try']) @endisset
{{-- Related topics — the cross-links that connect the path --}} @if ($related->isNotEmpty())

Related topics

@foreach ($related as $rel) {{ $rel['number'] }} {{ $rel['title'] }} @endforeach
@endif {{-- Sequential prev / next --}}
@if ($prev)

← Previous topic

{{ $prev['number'] }}. {{ $prev['title'] }}

@endif @if ($next)

Next topic →

{{ $next['number'] }}. {{ $next['title'] }}

@endif
@endsection