@extends('layouts.vertical', ['title' => 'Blog Posts']) @section('content')

Blog Posts

@if(session('success')) @endif
@forelse($posts as $post) @empty @endforelse
# 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
@csrf @method('DELETE')

No posts found

Add Your First Post
@if($posts->hasPages())
{{ $posts->links() }}
@endif
@endsection