@extends('layouts.admin') @section('header', 'Posts') @section('content')

All Posts

Create Post
@forelse($posts as $post) @empty @endforelse
Title Category Status Date Actions
{{ $post->title }}
@if($post->is_featured) Featured @endif
{{ $post->category ? $post->category->name : 'None' }} {{ $post->is_published ? 'Published' : 'Draft' }} {{ $post->created_at->format('M j, Y') }} Edit
@csrf @method('DELETE')
No posts found.
@if($posts->hasPages())
{{ $posts->links() }}
@endif
@endsection