@extends('admin.layout') @section('title', '审核队列') @section('page-title', '审核队列') @section('actions') @if ($canArticles) 文章投稿 @endif @if ($canForum) 论坛帖子 回复 @endif @endsection @section('content') @if ($tab === 'articles' && $articles) @if ($articles->isEmpty())
暂无待审文章。
@else| 标题 | 投稿人 | 分类 | 摘要 | 操作 |
|---|---|---|---|---|
| {{ $a->title }} | {{ $a->user?->name ?? '管理员' }} | {{ $a->category?->name ?: '-' }} | {{ Str::limit(strip_tags($a->summary ?: $a->body), 40) }} |
暂无待审帖子。
@else| 标题 | 作者 | 板块 | 内容 | 操作 |
|---|---|---|---|---|
| {{ $t->title }} | {{ $t->user?->name ?? '-' }} | {{ $t->board?->name ?: '-' }} | {{ Str::limit(strip_tags($t->body), 40) }} |
暂无待审回复。
@else| 回复内容 | 作者 | 所属帖子 | 操作 |
|---|---|---|---|
| {{ Str::limit(strip_tags($r->body), 60) }} | {{ $r->user?->name ?? '-' }} | {{ $r->thread?->title ?: '-' }} |
暂无待审内容。
@endif @endsection