@extends('web.default.layouts.app') @push('styles_top') @endpush @section('content')

{{ $topic->title }}

{{ trans('public.by') }} {{ $topic->creator->full_name }} {{ trans('public.in') }} {{ dateTimeFormat($topic->created_at, 'j M Y | H:i') }}
@include('web.default.forum.post_card') {{-- Topic Posts --}} @if(!empty($topic->posts) and count($topic->posts)) @foreach($topic->posts as $postRow) @include('web.default.forum.post_card',['post' => $postRow]) @endforeach @endif {{-- Reply to Topic --}} @if(!auth()->check())
login icon

{{ trans('update.login_to_reply') }}

{{ trans('update.login_to_reply_hint') }}

@elseif($topic->close or $forum->close)
closed icon

{{ trans('update.topic_closed') }}

{{ trans('update.topic_closed_hint') }}

@else

{{ trans('update.reply_to_the_topic') }}

{{ csrf_field() }}
{!! trans('update.you_are_replying_to_the_message') !!}
@endif

{{ trans('panel.report') }}

{{ trans('product.report_modal_hint') }}

@endsection @push('scripts_bottom') @endpush