Files
newznab-tmux/resources/views/forum/post/partials/quote.blade.php
T
2024-04-08 20:38:46 +02:00

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>