- 存取權限
- {{ $article->getAccessLevelLabel() }}
- 瀏覽次數
- {{ $article->view_count }}
@if($article->author_name)
- 作者
- {{ $article->author_name }}
@endif
- 建立者
- {{ $article->creator->name ?? 'N/A' }}
- 網址代碼
- {{ $article->slug }}
- 建立時間
- {{ $article->created_at->format('Y-m-d H:i:s') }}
@if($article->published_at)
- 發布時間
-
{{ $article->published_at->format('Y-m-d H:i:s') }}
@if($article->isScheduled())
排程中
@endif
@endif
@if($article->expires_at)
- 過期時間
-
{{ $article->expires_at->format('Y-m-d H:i:s') }}
@if($article->isExpired())
已過期
@endif
@endif
@if($article->lastUpdatedBy)
- 最後更新者
- {{ $article->lastUpdatedBy->name }}
- 最後更新時間
- {{ $article->updated_at->format('Y-m-d H:i:s') }}
@endif
@if($article->meta_description)
- SEO 描述
- {{ $article->meta_description }}
@endif