mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
14 lines
548 B
PHP
14 lines
548 B
PHP
<div class="bg-white rounded-md border mb-2">
|
|
<div class="p-6">
|
|
<div class="flex justify-between flex-row-reverse mb-2">
|
|
<span>
|
|
<a href="{{ Forum::route('thread.show', $post) }}" class="text-gray-500">#{{ $post->sequence }}</a>
|
|
</span>
|
|
<div>
|
|
<strong>{{ $post->authorName }}</strong> <span class="text-gray-500">{{ $post->posted }}</span>
|
|
</div>
|
|
</div>
|
|
{!! \Illuminate\Support\Str::limit(Forum::render($post->content)) !!}
|
|
</div>
|
|
</div>
|