<?php if(count($rows) > 0): ?>
	<h1><?php echo e($nra); ?></h1>
	<div class="table-responsive">
<table class="table-hover table-striped table">
<tr>
<?php foreach($columns->viewlist as $col): ?>
<th><?php echo e($col); ?></td>
<?php endforeach; ?>
</tr>
<?php foreach($rows as $row): ?>
<tr>
<?php foreach($columns->viewlist as $col): ?>
	<td><?php echo e($row->$col); ?></td>
<?php endforeach; ?>
</tr>
<?php endforeach; ?>
</table>
</div>
<?php else: ?>
	<p>
		No lists found!
	</p>
</div>
<?php endif; ?>
<?php echo $rows->render(); ?>