@extends('admin.layout') @section('title', '文章管理') @section('page-title', '文章管理') @section('actions') 新建文章 @endsection @section('content') @forelse ($articles as $a) @empty @endforelse
标题分类状态发布时间操作
{{ $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') ?: '-' }}
@csrf @method('DELETE')
暂无文章。
{{ $articles->links('pagination::bootstrap-5') }} @endsection