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