<?php $__env->startSection('title', $service->title); ?>
<?php $__env->startSection('meta_tags', $service->meta_tags); ?>
<?php $__env->startSection('meta_description', $service->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></span>
                            <a href="<?php echo route('services'); ?>">Services</a>
                            <span><i class="fa fa-long-arrow-right"></i><?php echo $service->heading; ?></span>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Procedures Main -->
    <section class="padding">
        <div class="container">
            <div class="row">

                <div class="procedure">
                    <div class="col-md-3 col-sm-4">
                        <ul class="tabs">
                            <?php foreach($services as $index=>$record): ?>
                                <li class="<?php if($record->slug == $service->slug): ?> active <?php endif; ?>" rel="tab<?php echo $index+1; ?>"><a href="<?php echo route('service.show', $record->slug); ?>"><?php echo $record->heading; ?></a></li>
                            <?php endforeach; ?>
                        </ul>
                    </div>
                    <div class="col-md-9 col-sm-8">
                        <div class="tab_container">
                            <div class="tab_content">
                                <div class="procedure_content">
                                    <?php if(file_exists('uploads/services/'.$service->attachment) && $service->attachment != ''): ?>
                                        <img src="<?php echo asset('uploads/services/'.$service->attachment); ?>" alt="<?php echo $service->heading; ?>" class="img-responsive heading_space">
                                    <?php endif; ?>

                                    <div class="dynamic-text">
                                        <?php echo $service->description; ?>

                                    </div>
                                </div>
                            </div>

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

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