@extends('front') @section('content')
@if ($blogsData->isNotEmpty()) @foreach ($blogsData as $blog)
img
{{ $blog['category_name'] }}
user
{{ $blog['author_name'] }}
{{ $blog['created_at'] }}
{{ $blog['title'] }}

{{ strip_tags(html_entity_decode($blog['description'])) }}

@endforeach @else {{ __('no_blog_info') }} @endif
@if ($blogs->hasPages())
@endif
@endsection