@extends('layouts.admin') @section('title', 'Blog Posts') @section('header', 'Blog Posts') @section('content')
Reset
@forelse($posts as $post) @empty @endforelse
Title Category Status Date Actions
@if($post->image) @endif {{ $post->title }}
{{ $post->category?->name }}
@csrf @method('PATCH')
{{ $post->created_at->format('d M Y') }}
@csrf @method('DELETE')
No posts found
@if($posts->hasPages())
{{ $posts->links() }}
@endif
New Post
@endsection