49 lines
2.3 KiB
PHP
49 lines
2.3 KiB
PHP
<div class="col-12">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<div class="row" style="padding-bottom: 10px;">
|
|
<div class="col-6" style="align-self: center;">
|
|
<h4 class="header-title" style="position: relative;">Batch List</h4>
|
|
</div>
|
|
|
|
</div>
|
|
<table class="table table-hover m-0 table-centered dt-responsive nowrap w-100" cellspacing="0" id="tickets-table">
|
|
<thead class="bg-light">
|
|
<tr>
|
|
<th class="font-weight-medium">SNO</th>
|
|
<th class="font-weight-medium">Batch Code</th>
|
|
<th class="font-weight-medium">File Name</th>
|
|
<th class="font-weight-medium">Client</th>
|
|
<th class="font-weight-medium">Client Policy</th>
|
|
<th class="font-weight-medium">Event Type</th>
|
|
<th class="font-weight-medium">Insurer/TPA</th>
|
|
<th class="font-weight-medium">Action</th>
|
|
<th class="font-weight-medium">Count</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody class="font-12">
|
|
<?php
|
|
if(isset($batch_list))
|
|
{
|
|
foreach ($batch_list as $key => $file) {
|
|
?>
|
|
|
|
<tr>
|
|
<td><b><?php echo ($key + 1)?></b></td>
|
|
<td><?php echo $file['batch_code']?></td>
|
|
<td><?php echo $file['file_name']?></td>
|
|
<td><?php echo $file['client_short_name']?></td>
|
|
<td><?php echo $file['policy_name']?></td>
|
|
<td><?php echo $file['event_type']?></td>
|
|
<td><?php echo $file['insurer_or_tpa']?></td>
|
|
<td><?php echo $file['actions']?></td>
|
|
<td><?php echo $file['count']?></td>
|
|
</tr>
|
|
<?php }}?>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div><!-- end col -->
|