@if(session('success'))
{{ session('success') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
| {{ __('ID') }} |
{{ __('Title') }} |
{{ __('Category') }} |
{{ __('Status') }} |
{{ __('Featured') }} |
{{ __('Hits') }} |
{{ __('Created') }} |
{{ __('Actions') }} |
@forelse($blogs as $blog)
| {{ $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') }} |
|
@empty
| {{ __('No blogs found') }} |
@endforelse
{{ $blogs->links('pagination::bootstrap-5') }}