Files
newznab-tmux/resources/forum/blade-tailwind/views/thread/unread.blade.php
T
2026-04-07 13:45:29 +02:00

32 lines
1.2 KiB
PHP

@extends ('forum::layouts.main', ['thread' => null, 'breadcrumbs_append' => [trans('forum::threads.unread_updated')]])
@section ('forum-content')
<div id="new-posts">
<h2 class="text-3xl text-medium my-4 text-gray-900 dark:text-gray-100">{{ trans('forum::threads.unread_updated') }}</h2>
@if (!$threads->isEmpty())
<div class="">
@foreach ($threads as $thread)
@include ('forum::thread.partials.list')
@endforeach
</div>
@else
<div class="bg-white dark:bg-gray-800 shadow rounded text-gray-500 dark:text-gray-400 text-center py-4 transition-colors">
{{ trans('forum::threads.none_found') }}
</div>
@endif
</div>
@if (!$threads->isEmpty())
@can ('markThreadsAsRead')
<div class="flex justify-center mt-4">
<x-forum::button class="px-5 flex items-center gap-2" data-open-modal="mark-as-read">
<i data-feather="book"></i> {{ trans('forum::general.mark_read') }}
</x-forum::button>
</div>
@include ('forum::thread.modals.mark-as-read')
@endcan
@endif
@stop