<div class="container">
<div class="row">
<?php if(isset($result)): ?>
<?php $__currentLoopData = $result; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $blog): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<div class="col-lg-6">
<div class="single_blog">
<a href="<?php echo e(route('blogDetails',[$blog->slug])); ?>">
<div class="thumb">
<div class="thumb_inner lazy"
data-src="<?php echo e(getBlogImage($blog->thumbnail)); ?>">
</div>
</div>
</a>
<div class="blog_meta">
<span><?php echo e($blog->user->name); ?> . <?php echo e(showDate(@$blog->authored_date )); ?>, <?php echo e(@$blog->authored_time); ?></span>
<a href="<?php echo e(route('blogDetails',[$blog->slug])); ?>">
<h4><?php echo e($blog->title); ?></h4>
</a>
</div>
</div>
</div>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php endif; ?>
<?php if(count($result)==0): ?>
<div class="col-lg-12">
<div
class="Nocouse_wizged text-center d-flex align-items-center justify-content-center">
<div class="thumb">
<img style="width: 50px"
src="<?php echo e(asset('public/frontend/infixlmstheme/img/not-found.png')); ?>"
alt="">
</div>
<h1>
<?php echo e(__('frontend.No Post Found')); ?>
</h1>
</div>
</div>
<?php endif; ?>
</div>
<script>
$(function () {
if ($.isFunction($.fn.lazy)) {
$('.lazy').lazy();
}
});
</script>
</div>
<?php /**PATH /home/bouloter/infix/resources/views/frontend/infixlmstheme/snippets/components/_single_blog.blade.php ENDPATH**/ ?>