@extends('layouts.app') @section('content')
New Blog
Title Category Status Meta Keywords Meta Description Image Actions @forelse($blogs as $blog) ⋮⋮ {{ $blog->title }} {{ $blog->category?->name }} {{ $blog->status }} {{ Str::limit($blog->meta_keywords ?? '', 50) }} {{ Str::limit($blog->meta_description ?? '', 80) }} @php $img = $blog->image ?? null; @endphp @if(!empty($img)) thumb @else @endif
@csrf
@empty No blogs yet. @endforelse
@push('scripts') @endpush @endsection