@extends('frontend.layouts.master') @section('title') Unbound Bangladesh | Blogs @endsection @section('content')

Explore Blogs

@foreach ($posts as $post)
@if ($post->image) Post Image @else
No Image
@endif
{{ $post?->category?->name ?? '-' }}
{{ Str::limit($post->title, 90) }}

{{ Str::limit($post->description, 180) }}

Read More
@endforeach
{{ $posts->links('pagination::bootstrap-5') }}
@endsection