<div class="row">
	<div class="col-xs-11">
        <section class="panel" style="font-size: 160%;">
	        <header class="panel-heading">
	          <?php echo app('translator')->get('messages.neighberhood_calendar'); ?>
	        </header>
	        <table class="table table-striped">
	          <thead>
	            <tr>
	              <th><?php echo app('translator')->get('messages.title'); ?></th>
	              <th><?php echo app('translator')->get('messages.publish_dept'); ?></th>
	              <th><?php echo app('translator')->get('messages.publish_time'); ?></th>
	            </tr>
	          </thead>
	          <tbody>
	          	<?php foreach($cals as $one): ?>
		          	<tr>
		          		<td><a href="javascript:;" class="btn_cal_list" data-id="<?php echo e($one->id); ?>"><?php echo e($one->name); ?></a></td>
		          		<td><?php echo e($one->author); ?></td>
		          		<td><?php echo e($one->created_at); ?></td>		
		            </tr>
	          	<?php endforeach; ?>
	          </tbody>
	        </table>
	        <?php if($cals->count() == 0): ?>
			<div class="alert alert-info" style="margin: 30px;text-align: center;">
				<button type="button" class="close" data-dismiss="alert"><i class="fa fa-times"></i></button>
				<?php echo app('translator')->get('messages.sor_noneighber_cal'); ?>
			</div>
	        <?php endif; ?>
	      </section>
    </div>

    <div class="col-xs-1">
    	<div class="row">
    		<div class="col-xs-12">
    			<div class="btn-group-vertical m-b-sm">
    				<button type="button" class="btn btn-white btn_home"><i class="fa fa-mail-reply fa-3x"></i></button>
    			</div>
    		</div>
    		<div class="col-xs-12">
    			<div class="btn-group-vertical m-b-sm">
		    		<?php if($cals->currentPage() != 1): ?>
		    		<button type="button" class="btn btn-white btn_cal_list" data-id="<?php echo e($type); ?>" data-page="<?php echo e($cals->currentPage()-1); ?>"><i class="fa fa-chevron-circle-up fa-3x"></i></button>
		    		<?php endif; ?>

		    		<?php if($cals->hasMorePages() ): ?>
			        <button type="button" class="btn btn-white btn_cal_list" data-id="<?php echo e($type); ?>" data-page="<?php echo e($cals->currentPage()+1); ?>"><i class="fa fa-chevron-circle-down fa-3x"></i></button>
			        <?php endif; ?>
			    </div>
    		</div>
    		
    	</div>
    	
    </div>
</div>