<?php use Carbon\Carbon; ?>


<?php $__env->startSection('title', 'Gallery Images'); ?>

<?php $__env->startSection('meta_tags', env('APP_NAME').' Gallery Albums'); ?>

<?php $__env->startSection('meta_description', env('APP_NAME').' Discover what we do in our Gallery albums'); ?>

<?php $__env->startSection('header_css'); ?>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('header_js'); ?>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>
<!-- breadcrumb wrapper Start -->
<div class="breadcrumb-banner-wrapper">
  <div class="container">
    <div class="row">
      <div class="col-sm-12">
        <div class="breadcrumb-text">
          <h1 class="text-center">Gallery</h1>
          <div class="breadcrumb-bar">
            <ul class="breadcrumb text-center">
              <li><a href="<?php echo e(route('home')); ?>">Home</a></li>
              
              <li>Gallery</li>
              
            </ul>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>
<!-- breadcrumb wrapper End --> 

<!-- Inner page wrapper start -->
<div class="inner-page-wrapper ">
  <div class="container">
    <div class="row"> 
     <!-- Start Single Blog Post -->
      <?php foreach($albums as $row) { ?>
      <div class="col-sm-4">
        <div class="single-blog-post">
          <div class="single-blog-thumb"> <a href="<?php echo e(route('gallery.details', [$row->slug])); ?>"><img src="<?php echo e(asset('uploads/albums/thumbs/'.$row->attachment)); ?>" alt="<?php echo e($row->caption); ?> - Image" class="img-responsive"> </a></div>
          <div class="single-post-content">
            <h4><a href="<?php echo e(route('gallery.details', [$row->slug])); ?>"><?php echo e($row->caption); ?></a></h4>
            
          </div>
        </div>
      </div>
       <?php } ?>
      <!-- End Single Blog Post --> 

     
    </div>
  </div>
</div>
<!-- Inner page wrapper end --> 


<?php $__env->stopSection(); ?>

<?php $__env->startSection('footer_js'); ?>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layout.container', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>