@extends('layouts.vertical', ['title' => 'Blog Posts']) @section('content')
| # | Title | Categories | Published Date | Status | Actions |
|---|---|---|---|---|---|
| {{ $post->id }} | {{ $post->title }} @if($post->featured_image) @endif | @forelse($post->categories as $category) {{ $category->name }} @empty No categories @endforelse | @if($post->published_at) {{ $post->published_at->format('M d, Y') }} @else Not published @endif | @if($post->is_active) Active @else Inactive @endif @if($post->published_at && $post->published_at->isFuture()) Scheduled @endif | |
|
No posts found Add Your First Post |
|||||