@extends ('forum.master', ['thread' => null, 'breadcrumbs_append' => [trans('forum::threads.recent')]])
@section ('content')
{{ trans('forum::threads.recent') }}
@if (! $threads->isEmpty())
@foreach ($threads as $thread)
@include ('forum.thread.partials.list')
@endforeach
@else
{{ trans('forum::threads.none_found') }}
@endif
@stop