Files
cloud-chip.cn/resources/views/admin/forum/boards.blade.php
T
2026-08-08 18:27:38 +08:00

33 lines
1.4 KiB
PHP

@extends('admin.layout')
@section('title', '论坛版块')
@section('page-title', '论坛版块')
@section('actions')
<a href="{{ route('admin.forum.boards.create') }}" class="btn btn-primary btn-sm"><x-icon name="plus" :size="16"/> 新建版块</a>
@endsection
@section('content')
<table class="data-table">
<thead><tr><th>名称</th><th>Slug</th><th>排序</th><th class="col-op">操作</th></tr></thead>
<tbody>
@forelse ($boards as $b)
<tr>
<td>{{ $b->name }}</td>
<td class="muted">{{ $b->slug }}</td>
<td>{{ $b->sort }}</td>
<td class="row-actions">
<a href="{{ route('admin.forum.boards.edit', $b) }}" class="btn btn-sm"><x-icon name="edit" :size="16"/></a>
<form method="POST" action="{{ route('admin.forum.boards.destroy', $b) }}" onsubmit="return confirm('确认删除该版块?帖子将一并删除。')">
@csrf @method('DELETE')<button class="btn btn-sm btn-danger"><x-icon name="trash" :size="16"/></button></form>
</td>
</tr>
@empty
<tr><td colspan="4" class="muted">暂无版块。</td></tr>
@endforelse
</tbody>
</table>
{{ $boards->links('pagination::bootstrap-5') }}
<p style="margin-top:16px;"><a href="{{ route('admin.forum.threads.index') }}" class="btn btn-sm">查看全部帖子 </a></p>
@endsection