@extends('layouts.app') @section('content')
| Title | Category | Author | Status | Published Date | Views | Actions |
|---|---|---|---|---|---|---|
|
{{ $post->title }}
@if($post->is_featured)
Featured
@endif
{{ Str::limit($post->excerpt, 60) }}
|
@if($post->category) {{ $post->category->name }} @else Uncategorized @endif | {{ $post->author->name }} | @if($post->status === 'published') Published @elseif($post->status === 'scheduled') Scheduled @else Draft @endif | @if($post->published_at) {{ $post->published_at->format('M d, Y') }} @else Not published @endif | {{ $post->views_count }} |
No posts found. Create your first post to get started!
Create Post