@extends('layouts.app') @section('title', '我的投稿') @section('content')

我的投稿

新投稿
@if ($articles->isEmpty())

你还没有投稿。

去投稿 →
@else
@foreach ($articles as $a) @endforeach
标题 状态 提交时间 操作
{{ $a->title }} @if ($a->status === 'approved') 已发布 @elseif ($a->status === 'pending') 待审 @elseif ($a->status === 'rejected') 已驳回 @else 草稿 @endif {{ $a->created_at?->format('Y-m-d H:i') }} 查看
{{ $articles->links('pagination::bootstrap-5') }}
@endif
@endsection