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

Blog Posts

Manage your blog content

New Post
@forelse($posts as $post) @empty @endforelse
Title Category Status Views Date Actions
@if($post->featured_image) @else
@endif

{{ Str::limit($post->title, 50) }}

{{ $post->author->name }}

@if($post->category) {{ $post->category->name }} @else - @endif @if($post->is_published) Published @else Draft @endif {{ number_format($post->views) }} {{ $post->created_at->format('M d, Y') }}
@csrf @method('DELETE')
No posts found. Create your first post
@if($posts->hasPages())
{{ $posts->links() }}
@endif
@endsection