mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-31 10:18:55 +00:00
14 lines
577 B
PHP
14 lines
577 B
PHP
<div class="bg-white rounded-md border mb-2" style="border-color: #eee;">
|
|
<div class="px-4">
|
|
<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>
|