<?php $__env->startSection('title', $seo->title); ?>
<?php $__env->startSection('meta_tags', $seo->meta_tags); ?>
<?php $__env->startSection('meta_description', $seo->meta_description); ?>

<?php $__env->startSection('footer_js'); ?>
    <script type="text/javascript">
        $(document).ready(function () {
            $('#fixed-collapse-navbar li').removeClass('active');
            $('#fixed-collapse-navbar').find('.services').addClass('active');
        });
    </script>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('dynamicdata'); ?>
    <!--Page header & Title-->
    <section id="page_header">
        <div class="page_title">
            <div class="container">
                <div class="row">
                    <div class="col-md-12">
                        <h2 class="title">Services</h2>
                        <div class="page_link">
                            <a href="<?php echo route('home'); ?>">Home</a>
                            <span><i class="fa fa-long-arrow-right"></i>Services</span>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!--news list-->
    <section id="gallery" class="padding-top padding-top2">
        <div class="container">

            <div class="row">
                <?php foreach($services as $index=>$record): ?>
                    <div class="col-md-4 col-sm-6 services_wrap heading_space">
                        <div class="image">
                            <a href="<?php echo route('service.show', $record->slug); ?>">
                            <?php if(file_exists('uploads/services/'.$record->attachment) && $record->attachment != ''): ?>
                                <img class="img-responsive" src="<?php echo asset('uploads/services/'.$record->attachment); ?>" alt="<?php echo $record->heading; ?>"/>
                            <?php else: ?>
                                <img class="img-responsive" src="<?php echo asset('uploads/noimage.jpg'); ?>" alt="<?php echo $record->heading; ?>"/>
                            <?php endif; ?>
                            </a>
                        </div>
                        <div class="gallery_content text-left productlist newslist">
                            <h3><a href="<?php echo route('service.show', $record->slug); ?>"><?php echo $record->heading; ?></a></h3>
                            <p><?php echo $record->short_description; ?></p>
                            <a class="btn-readmore" href="<?php echo route('project.show', $record->slug); ?>">- Read More</a>

                        </div>
                    </div>
                <?php endforeach; ?>

                <div class="col-xs-12">
                    <?php echo $services->render(); ?>

                </div>

            </div>
        </div>
    </section>
<?php $__env->stopSection(); ?>

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