@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 == 1) @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, 'class' => 'mt-30', ])
@include('frontend::blog.include.blog_sidebar')
@include('frontend::components.newsletter_area')
@endsection