?
<!----------------------------------------- section-listing------------------------------------>
<section class="homeblog bg-dark-gray background-position-center-top position-relative">
<div class="container">
<div class="row align-items-center justify-content-center text-center mb-2 sm-mb-5">
<div class="col-md-6">
<h5>Media</h5>
<h4 class="text-white fw-600">Latest @ Sanghavi Realty</h4>
</div>
</div>
<div class="row blog-metro mt-lg-5 mt-md-4 mt-sm-4 mb-2 g-4">
<?php $__currentLoopData = $posts; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $post): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<div class="col-xl-4 col-md-6 mb-3 fade-in">
<div class="blog-card card text-center">
<a href='<?php echo e(url('post')); ?>/<?php echo e($post->slug); ?>'>
<?php if(!empty($post->image1)): ?>
<img class="d-block w-100" title='<?php echo e($post->title); ?>' alt='<?php echo e($post->title); ?>'
src="<?php echo e(url('storage/product')); ?>/<?php echo e($post->image1); ?>">
<?php else: ?>
<img src="<?php echo e(url('storage/product')); ?>/default-blogpost.jpg" class="d-block w-100">
<?php endif; ?>
</a>
<div class="card-body">
<div class="blog-title ">
<h3 class="card-title"> <a class="card-title"
href="<?php echo e(url('post')); ?>/<?php echo e($post->slug); ?>"> <?php echo e($post->title); ?>
- <?php echo e($post->key); ?></h3>
</a>
</div>
</div>
</div>
</div>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
</div>
</section>
<?php /**PATH /home/sanghavirealty/public_html/resources/views/blog/homepage-grid.blade.php ENDPATH**/ ?>