@extends('layouts.app') @section('content')

Blogs

@forelse($blogs as $blog) @empty @endforelse
Title Published Created At Actions
{{ $blog->title }} {{ $blog->is_published ? 'Yes' : 'No' }} {{ $blog->created_at->format('d M Y') }} Edit
@csrf @method('DELETE')
No blogs found.
{{ $blogs->links() }}
@endsection