@extends('layouts.dashboard-layout') @section('title', 'Topik Forum') @section('content')
@if(session('error')) @endif @if($topic)
Kembali ke Forum

{{ $topic->title }}

Ditulis oleh {{ $topic->user->name ?? 'Pengguna Tidak Dikenal' }} {{ $topic->created_at->locale('id')->isoFormat('D MMMM Y') }}
{!! nl2br(e($topic->content)) !!}

Komentar

@else

Topik tidak ditemukan

@endif
@endsection