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

All Blog Posts

Categories New Post
@forelse($posts as $post) @empty@endforelse
TitleCategoryAuthorStatusViewsDateActions
{{ Str::limit($post->title,50) }} {{ $post->category->name??'-' }} {{ $post->author }} @if($post->is_published)Published@elseDraft@endif {{ $post->views }} {{ \Carbon\Carbon::parse($post->created_at)->format('d M Y') }} @if($post->is_published)@endif
@csrf @method('DELETE')
No posts yet.
{{ $posts->links() }}
@endsection