mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 17:28:55 +00:00
22 lines
713 B
PHP
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
|