| # |
Title |
Content |
Image |
Status |
Action |
@forelse ($blogs as $key => $blog)
| {{ $key + 1 }} |
{{ $blog->title }} |
{{ \Illuminate\Support\Str::limit(strip_tags($blog->content ?? ''), 80, '...') }}
|
@if($blog->image)
@else
No image
@endif
|
@if ($blog->status == 'active')
Active
@else
Inactive
@endif
|
|
@empty
|
No blog entries found.
|
@endforelse
@if(method_exists($blogs, 'links'))
{{ $blogs->links('pagination::bootstrap-4') }}
@endif