@extends('frontend.layouts.pages') @section('title', $blogCategory ?? lang('Blog', 'blog')) @section('content')
@forelse ($blogArticles as $blogArticle)
{{ $blogArticle->title }} {{ $blogArticle->blogCategory->name }}
{{ $blogArticle->title }}

{{ shortertext($blogArticle->short_description, 150) }}

@if ($loop->first) {!! ads_blog_articles_center() !!} @endif @empty

{{ lang('No data found', 'blog') }}

{{ lang('It looks like there is no articles or your search did not return any results', 'blog') }}

@endforelse
{{ $blogArticles->links() }}
@include('frontend.blog.includes.sidebar')
{!! ads_blog_articles_bottom() !!}
@endsection