@extends('frontend.blog.index') @section('blog_content')
@if($blogs->count()) @foreach($blogs as $blog)
{{ $blog->title_text }}
  • {{ $blog->category->name_text ?? 'Uncategorized' }}
  • {{ __('by') }} {{ $blogs[0]->author->name ?? 'Admin ' }}

{{ Str::limit($blog->title_text, 70) }}

{{ Str::limit($blog->excerpt_text, 200) }}

@endforeach @else

{{ __('No blog posts found.') }}

{{ __('Please try adjusting your search or browse other categories.') }}

@endif
@if($blogs->hasPages()) @endif
@endsection