<?php $__env->startSection('title'); ?>
    Students|Golars Networks
<?php $__env->stopSection(); ?>
<?php $__env->startSection('main'); ?>


<div class="bdmdiv">
 
    <h1 class="name_hed">All Students</h1>
    <div class="brdcom">
    	<ul>
            <li><a href="<?php echo URL::to('/');; ?>">Home</a></li>
            <li>Students List</li>
             
        </ul>
    </div>
</div>

 

<p class="add_new_but"><a href="<?php echo URL::to('/');; ?>/students/csv">Export</a></p>

<?php if ($addp == '1'): ?> 
<p class="add_new_but"><?php echo link_to_route('students.create', 'Add new student'); ?></p>
<?php endif; ?>

	<table class="table table-striped table-bordered table-hover" id="datatables">
		<thead>
			<tr>
				<th>User ID</th>
				<th>Name</th>
				<th>Email</th>
				<th>Phone</th>
				<th>Status</th>
				<th>Attestation date</th>
			</tr>
		</thead>
		<tbody></tbody>
	</table>
<input type="hidden" name="hiddenclient" class="hiddenclient" value="<?php echo $clientid; ?>">
	<?php if ($scripts = 'js/students/list_students.js'): ?> <?php endif; ?>
	
<?php $__env->stopSection(); ?>

<?php echo $__env->make('layouts.scaffold', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>