@extends('frontend::layouts.master') @section('title') {{ $seo_setting->title }} @endsection @section('content')
@forelse ($blogs as $blog)
{{ $blog?->title }}
@if ($blog?->categories && $blog?->categories->count() > 0)
@foreach ($blog?->categories as $category) @break($loop->index == 2) @endforeach
@endif

{{ $blog?->title }}

{!! Str::limit($blog?->excerpt, 140, '...') !!}
@empty @include('frontend::blog.include.blog_not_found') @endforelse
@include('frontend::components.custom-pagination', ['items' => $blogs])
@include('frontend::blog.include.blog_sidebar')
@include('frontend::components.newsletter_area')
@endsection