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

Explore Our Blogs

Dive into a world of knowledge, tips, and insights curated just for you.

@foreach ($blogs as $blog)
@if($blog->category) {{ $blog->category->name }} @endif {{ $blog->title }}

{{ $blog->title }}

{!! Str::limit(strip_tags($blog->description), 200) !!}
Read More →
{{ $blog->created_at->format('M d, Y') }} {{-- {{ $blog->author->name }} --}}
@endforeach
{{ $blogs->links('pagination::tailwind') }}
@endsection