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