@extends('layouts.dashboard') @section('title', 'All Blogs') @section('page-title', 'All Blogs') @section('content')

{{ $blogs->total() }} Blogs

+ Add Blog
@forelse($blogs as $b) @empty @endforelse
TitleAuthorCategoryLangViewsDate
{{ \Illuminate\Support\Str::limit($b->title, 60) }} {{ $b->author->name ?? '—' }} {{ $b->category->name ?? '—' }} {{ $b->language }} {{ number_format($b->views) }} {{ $b->created_at->format('M d, Y') }} Edit
@csrf @method('DELETE')
No blogs yet.
{{ $blogs->links() }}
@endsection