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

Posts List

@forelse($posts as $post) @empty @endforelse
Title Author Status Published At Actions
{{ $post->title }} {{ $post->user->name }} {{ $post->is_published ? 'Published' : 'Draft' }} {{ $post->published_at ? $post->published_at->format('M d, Y') : '-' }} Edit
@csrf @method('DELETE')
No posts found.
@endsection