| #
|
Thumbnail |
Title |
Slug |
Publish Date |
Actions |
@forelse($blogs as $key => $blog)
|
{{ $loop->iteration }}
|
@if ($blog->thumbnail)
@else
No Image
@endif
|
{{ $blog->title }}
|
{{ $blog->slug ?? 'No Slug' }}
|
{{ \Carbon\Carbon::parse($blog->publish_date)->format('M d, Y') }}
|
|
@empty
|
No blogs available at the moment.
|
@endforelse
{{ $blogs->links('pagination::bootstrap-5') }}