@extends('layouts.admin') @section('title', 'Manage Blog Posts') @section('content')

Blog Posts

Create New Post
@if ($posts->isEmpty())

No posts found.

@else
@foreach ($posts as $post) @endforeach
Title Published At Actions
{{ $post->title }} {{ $post->published_at ? $post->published_at->format('M d, Y') : '-' }} Edit
@csrf @method('DELETE')
@endif @endsection