@extends('admin.layouts.home') @section('title', __('Manage Blogs')) @section('content')

{{ __('Manage Blogs') }}

{{ __('Add New Blog') }}
{{ __('Blogs List') }}
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@forelse($blogs as $blog) @empty @endforelse
{{ __('ID') }} {{ __('Title') }} {{ __('Category') }} {{ __('Status') }} {{ __('Featured') }} {{ __('Hits') }} {{ __('Created') }} {{ __('Actions') }}
{{ $blog->id }} {{ $blog->title }} @if($blog->category) {{ $blog->category }} @else {{ __('Uncategorized') }} @endif @if($blog->active) {{ $blog->status ?? 'Published' }} @else {{ __('Draft') }} @endif @if($blog->is_featured) {{ __('Featured') }} @else - @endif {{ $blog->hits ?? 0 }} {{ $blog->created_at->format('M d, Y') }}
@csrf @method('DELETE')
{{ __('No blogs found') }}
{{ $blogs->links('pagination::bootstrap-5') }}
@endsection