@extends ('forum.master', ['thread' => null, 'breadcrumbs_append' => [trans('forum::threads.unread_updated')]]) @section ('content')

{{ trans('forum::threads.unread_updated') }}

@if (! $threads->isEmpty())
@foreach ($threads as $thread) @include ('forum.thread.partials.list') @endforeach
@else
{{ trans('forum::threads.none_found') }}
@endif
@if (! $threads->isEmpty()) @can ('markThreadsAsRead')
@include ('forum.thread.modals.mark-as-read') @endcan @endif @stop