<?php $__env->startSection('title'); ?>
    Report By Batch|Golars Networks
<?php $__env->stopSection(); ?>
<?php $__env->startSection('main'); ?>

 

<div class="bdmdiv"> 
    <h1 class="name_hed">Attendance Reports</h1>
    <div class="brdcom">
    	<ul>
            <li><a href="<?php echo URL::to('/');; ?>">Home</a></li>
            <li>Report By Batch</li>
            
        </ul>
    </div>
</div> 
<div>
	<?php echo Form::open(array('id' => 'classcreate')); ?>
		<ul class="create_roll dpdwn">
			<li>
				<?php echo Form::label('select_batch', 'Select Batch:'); ?>
				<?php echo Form::select('select_batch', $batchs, '', array("id" => "batch_reportsFilter") ); ?>
			</li>
		</ul>
	<?php echo Form::close(); ?>
</div>

<p class="add_new_but" id="exportbybatch"><a href="javascript:void(0);">Export</a></p>

<table class="table table-striped table-bordered table-hover" id="datatables">
	<thead>
		<tr>
			<th>Class description</th>
			<th>Attendance Date</th>
			<th>Number of students</th> 
			<th>Attended</th>
			<th>Not Attended</th>
			<th>Not Available</th> 
		</tr>
	</thead>
	<tbody></tbody>
</table>

	<?php if ($scripts = 'js/attendancereports/batch_attendancereports.js'): ?> <?php endif; ?>
	
<?php $__env->stopSection(); ?>

<?php echo $__env->make('layouts.scaffold', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>