File: /home/armgroup/libs/storage/framework/views/7b2252c850643e7bea0538e88cc2bd6d414c3fe9.php
<?php $__env->startSection('content'); ?>
<main class="container-fluid my-5 body-content">
<div class="card p-5">
<h3 class="text-secondary text-center"><?php echo e(settings('pages-title')); ?></h3>
<p class="text-center text-justify"><?php echo e(settings('pages-description')); ?></p>
<hr>
<div class="row">
<?php $__currentLoopData = $pages; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $page): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<div class="col-sm-3">
<div class="card">
<a href="<?php echo e(route('pages.show', $page->slug)); ?>">
<img class="card-img-top"
src="<?php echo e(asset($page->thumb_image)); ?>"
alt="<?php echo e($page->title); ?>">
</a>
<div class="card-body">
<h5 class="card-title"><?php echo e($page->title); ?></h5>
<a href="<?php echo e(route('pages.show', $page->slug)); ?>" class="btn btn-sm btn-primary float-end"><?php echo e(__('More')); ?></a>
</div>
</div>
</div>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
<div class="mt-3"><?php echo e($pages->links()); ?></div>
</div>
</main>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/armgroup/libs/resources/views/frontend/pages/index.blade.php ENDPATH**/ ?>