@extends('admin.layout')
@section('title', '文章管理')
@section('page-title', '文章管理')
@section('actions')
新建文章
@endsection
@section('content')
| 标题 | 分类 | 状态 | 发布时间 | 操作 |
@forelse ($articles as $a)
| {{ $a->title }} |
{{ $a->category?->name ?: '-' }} |
@if ($a->status === 'approved') 已发布
@elseif ($a->status === 'pending') 待审
@elseif ($a->status === 'rejected') 已驳回
@else 草稿
@endif
|
{{ $a->published_at?->format('Y-m-d') ?: '-' }} |
|
@empty
| 暂无文章。 |
@endforelse
{{ $articles->links('pagination::bootstrap-5') }}
@endsection