IMMREX7
<?php $__env->startSection('content'); ?>
<div class="row clearfix">
<div class="col-sm-12">
<div class="card">
<div class="header">
<h2><strong>MARKSHEET </strong>REPORT</h2>
</div>
<?php echo Form::open(['url' => 'school/exam/report','class'=>'form-horizontal','id'=>'form']); ?>
<div class="body table-responsive">
<table class="table table-bordered table-striped table-hover js-basic-example dataTable">
<thead>
<tr>
<th></th>
<th>Unique No.</th>
<th>Generated Date</th>
<th>Exan Name</th>
<th>Ec No.</th>
<th>Name</th>
<th>Father</th>
<th>Mobile</th>
<th>Class</th>
<th>Section</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<?php $i = 1;?>
<?php $__currentLoopData = $reports; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $var): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<tr>
<td><input type="checkbox" name="idResult[]" value="<?php echo e($var->idResult); ?>"></td>
<td><?php echo e($var->idResult); ?></td>
<td><?php echo e(date('d-m-Y', strtotime($var->created_at))); ?></td>
<td><?php echo e($var->typeName); ?></td>
<td><?php echo e($var->ecNo); ?></td>
<td><?php echo e($var->fullName); ?></td>
<td><?php echo e($var->fatherName); ?></td>
<td><?php echo e($var->mobileNumber); ?></td>
<td><?php echo e($var->nameClass); ?></td>
<td><?php echo e($var->nameSection); ?></td>
<td>
<a href='<?php echo e(url('/school/exam/report/'.$var->idResult.'/view')); ?>' class="btn btn-raised btn-info waves-effect btn-round"><i class="fa fa-edit"></i>View</a>
<a href='<?php echo e(url('/school/exam/report/'.$var->idResult.'/download')); ?>' class="btn btn-raised btn-info waves-effect btn-round"><i class="fa fa-edit"></i>Download</a>
</td>
</tr>
<?php $i++; ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="row clearfix">
<div class="col-sm-8 offset-sm-4">
<?php echo Form::submit('DOWNLOAD SELECTED',['class' => 'btn btn-raised btn-primary btn-round waves-effect', 'name' => 'download']); ?>
<?php echo Form::submit('PRINT SELECTED',['class' => 'btn btn-raised btn-primary btn-round waves-effect', 'name' => 'download']); ?>
<?php echo Form::close(); ?>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('script'); ?>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('schools.school_layout', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
Copyright © 2021 -