@php use Illuminate\Support\Str; @endphp
@if($blogsByCategory->count() > 0) @foreach ($blogsByCategory as $blog)

{{ $blog->title }}

{!! Illuminate\Support\Str::limit(strip_tags($blog->description), 100) !!}

By|
{{ $blog->author }}
|
{{ $blog->created_at->format('Y-m-d') }}
@endforeach
{{ $blogsByCategory->links() }}
@else

No blogs found in this category.

@endif

Categories

@include('htmlpage.frontent.layout.footer')