<div class="row">
	<div class="col-xs-11">
        <section class="panel" style="font-size: 160%;">
	        <header class="panel-heading">
	          <?php /* <span class="label bg-danger pull-right">4 left</span> */ ?>
	         <?php echo app('translator')->get('messages.album_folder'); ?>
	        </header>
	        <table class="table table-striped">
	          <thead>
	            <tr>
	              <th><?php echo app('translator')->get('messages.title'); ?></th>
	            </tr>
	          </thead>
	          <tbody>
	          	<?php foreach($data as $one): ?>
	          	<tr>                
	            	<td><a href="javascript:;" class="btn_album_list" data-id="<?php echo e($one->id); ?>"><?php echo e($one->name); ?></a></td>
	            </tr>
	          	<?php endforeach; ?>
	          </tbody>
	        </table>
	        <?php if($data->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_nodata'); ?>
			</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($data->currentPage() != 1): ?>
		    		<button type="button" class="btn btn-white btn_link" data-link="<?php echo e($type); ?>" data-page="<?php echo e($data->currentPage()-1); ?>"><i class="fa fa-chevron-circle-up fa-3x"></i></button>
		    		<?php endif; ?>

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