<?php $__env->startSection('css_page_level'); ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('page-content'); ?>
            <!-- CONTENT -->
            <div class="wrap-fluid" id="paper-bg">

                <div class="row">
                    <div class="col-lg-12">
                        <div class="box">
                            <div class="box-header">
                                <!-- tools box -->
                                <div class="pull-right box-tools">
                                    <a class="btn btn-info" href="<?php echo e(action('FrontController@inst_order_view')); ?>"><?php echo app('translator')->get('messages.check_book_form'); ?></a>
                                </div>
                                <h3 class="box-title"><i class="fontello-doc"></i> 
                                    <span><?php echo app('translator')->get('messages.reserve_facility'); ?></span>
                                </h3>
                            </div>
                            <!-- /.box-header -->
                            <div class="box-body">
                                <!-- /.box-body -->
                                <div class="row">
                                    <?php foreach($insts as $one): ?>
                                    <div class="col-md-3 portfolio-item">
                                        <a href="<?php echo e(action('FrontController@inst_order',['inst_id'=>$one->id])); ?>">
                                            <?php if($one->cover_img != ''): ?>
                                            <img class="img-responsive" src="<?php echo e($one->cover_img); ?>?fit_w=700&fit_h=400" alt="">
                                            <?php else: ?>
                                            <img class="img-responsive" src="http://placehold.it/700x400" alt="">
                                            <?php endif; ?>
                                        </a>
                                        <h3>
                                            <a href="<?php echo e(action('FrontController@inst_order',['inst_id'=>$one->id])); ?>"><?php echo e($one->name); ?></a>
                                        </h3>
                                    </div>
                                    <?php endforeach; ?>
                                   
                                </div>
                                
                            </div>
                            <!-- /.box-body -->
                        </div>
                        <!-- /.box -->
                    </div>
                </div>


            </div>
            <!-- #/paper bg -->
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layout.front', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>