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

22 lines
713 B
PHP

@extends ('forum.master', ['thread' => null, 'breadcrumbs_append' => [trans('forum::threads.recent')]])
@section ('content')
<div id="new-posts">
<h2 class="text-3xl font-medium my-3">{{ trans('forum::threads.recent') }}</h2>
@if (! $threads->isEmpty())
<div class="my-3">
@foreach ($threads as $thread)
@include ('forum.thread.partials.list')
@endforeach
</div>
@else
<div class="bg-white my-3">
<div class="card-body text-center text-muted">
{{ trans('forum::threads.none_found') }}
</div>
</div>
@endif
</div>
@stop