@extends('admin.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('admin.forums.topics.post_card') {{-- Topic Posts --}} @if(!empty($topic->posts) and count($topic->posts)) @foreach($topic->posts as $postRow) @include('admin.forums.topics.post_card',['post' => $postRow]) @endforeach @endif

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

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

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

{{ csrf_field() }}
@endsection @push('scripts_bottom') @endpush