@extends('Layout::app') @push('css') @endpush @section('content') @include('Support::frontend.layouts.topic.search-form')
{!! clean($translation->content) !!}
@if(count($row->tags))
{{__("Tags: ")}} @foreach($row->tags as $index=>$tag) {{$tag->name}} @if($index < count($row->tags) - 1) , @endif @endforeach
@endif
@php $rows = $row->related()->limit(5)->with(['translation','cat'])->get(); @endphp

{{__("Related topics")}}

@foreach($rows as $topic) @include('Support::frontend.layouts.topic.loop') @endforeach
@include('Support::frontend.layouts.topic.sidebar')
@endsection