@extends('front::layouts.master') @section('title', $forum->title) @section('content')

{{ $forum->title }}

Posted by {{ $forum->user->name ?? 'User' }} • {{ $forum->created_at->diffForHumans() }}

{{ $forum->body }}


Replies ({{ $forum->replies->count() }})

@foreach($forum->replies as $reply)
{{ $reply->user->name ?? 'User' }} {{ $reply->created_at->diffForHumans() }}

{{ $reply->reply }}

@endforeach
@auth
Add a Reply
@csrf
@else

You must be logged in to reply.

@endauth
@endsection