# {{ $forum->category->name }}

{{ $forum->title }}

{{ $forum->user->name }}
{{ $forum->user->name }}
{{ \Carbon\Carbon::parse($forum->date)->format('F j, Y') }}
{!! $forum->description !!}
@if($forum->files->isNotEmpty())

{{ __('Forum Files') }}:

@foreach($forum->files as $file) @php $fileUrl = asset_url_local_s3(\App\Models\ForumFile::FILE_PATH . '/' . $file->file); $isImage = preg_match('/\.(jpg|jpeg|png|gif|webp)$/i', $file->file); @endphp @endforeach
@endif
@livewire('forum.forum-replies', ['forum' => $forum])