@extends('admin.layout') @section('title', '论坛帖子') @section('page-title', '论坛帖子') @section('content') @forelse ($threads as $t) @empty @endforelse
标题版块作者时间操作
@if ($t->is_pinned) @endif {{ $t->title }} {{ $t->board?->name ?: '-' }} {{ $t->user?->name ?: '匿名' }} {{ $t->created_at->format('Y-m-d') }}
@csrf @method('DELETE')
暂无帖子。
{{ $threads->links('pagination::bootstrap-5') }} @endsection