{{ ___('Recent Blog') }}

@forelse ($recentBlogs as $recentBlog)
@if($settings->blog_banner) {{ $recentBlog->title }} @endif

{{ $recentBlog->title }}

{{ $recentBlog->created_at->diffForHumans() }}
@empty {{ ___('No articles found') }} @endforelse

{{ ___('Categories') }}

    @forelse ($blogCategories as $blogCategory)
  • {{ $blogCategory->title }} ({{ count($blogCategory->blogs) }})
  • @empty
  • {{ ___('No categories found') }}
  • @endforelse
@if($settings->testimonials_enable && $settings->show_testimonials_blog && $testimonials->count() > 0)

{{ ___('Testimonials') }}

@foreach ($testimonials as $testimonial)

{{ !empty($testimonial->translations->{get_lang()}->content) ? $testimonial->translations->{get_lang()}->content : $testimonial->content }}

{{$testimonial->name}}
{{$testimonial->name}}
{{ !empty($testimonial->translations->{get_lang()}->designation) ? $testimonial->translations->{get_lang()}->designation : $testimonial->designation }}
@endforeach
@endif @if(!empty($blogTags))

{{ ___('Tags') }}

@foreach($blogTags as $tag) @if(!empty(trim($tag))) {{ trim($tag) }} @endif @endforeach
@endif