@extends('admin.layouts.app') @section('title', 'Blog Posts') @section('breadcrumb') @endsection @section('content')
{{ $blogs->total() }} Posts
@forelse($blogs as $blog) @empty @endforelse
Image Title Category Author Status Date Actions
@if($blog->featured_image) @else
@endif
{{ Str::limit($blog->title, 50) }}
@if($blog->is_featured)Featured@endif
{{ $blog->category?->name ?? '—' }} {{ $blog->author?->name ?? '—' }} {{ $blog->created_at->format('d M Y') }}
@csrf @method('DELETE')
No blog posts found. Create your first post
@if($blogs->hasPages()) @endif
@endsection @push('scripts') @endpush