<?php $__env->startSection('middle'); ?>
<section class="content">
<?php if(Session::has('msg')): ?>
<div class="alert alert-success" id="success-alert">
<button type="button" class="close" data-dismiss="alert">x</button>
<p align="center" style="font-weight: bold; font-size: 13px; color: white"> Success: <?php echo e(Session::get('msg')); ?> </p>
</div>
<br>
<?php endif; ?>
<?php if(Session::has('msg2')): ?>
<div class="alert alert-danger" id="success-alert">
<button type="button" class="close" data-dismiss="alert">x</button>
<p align="center" style="font-weight: bold; font-size: 13px; color: white"> Success: <?php echo e(Session::get('msg2')); ?> </p>
</div>
<br>
<?php endif; ?>
<?php if(count($taxes)>0): ?>
<?php else: ?>
<a href="<?php echo e(url('add_tax')); ?>"><button class="btn btn-primary" style="float: right"><i class="glyphicon glyphicon-plus"></i>Add New Tax</button></a>
<?php endif; ?>
<div class="row">
<div class="col-xs-12">
<div class="box">
<div class="box-header">
<h3 class="box-title">Taxes List</h3>
</div>
<!-- /.box-header -->
<div class="box-body">
<table id="example1" class="table table-bordered table-striped">
<thead>
<tr>
<th>SR #</th>
<th>Name</th>
<th>Percentage</th>
<th>Status</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<?php $count=1; ?>
<?php $__currentLoopData = $taxes; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $tax): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<tr>
<td><?php echo e($count); ?></td>
<td><?php echo e($tax->name); ?></td>
<td><?php echo e($tax->percentage); ?></td>
<td>
<?php if($tax->status_flag=='active'): ?>
<span style="color: #008000;font-weight: bold">Active</span>
<?php else: ?>
<span style="color: red;font-weight: bold">InActive</span>
<?php endif; ?>
</td>
<td style="width: 20%">
<a style="margin: 5px;" href="<?php echo e(url('edit_tax')); ?>/<?php echo e($tax->tax_id); ?>" class="btn btn-primary"><i class="glyphicon glyphicon-pencil"></i></a>
<a data-toggle="modal" data-target="#confirm-delete" data-href="<?php echo e(url('delete_tax')); ?>/<?php echo e($tax->tax_id); ?>" class="btn btn-danger"><i class="glyphicon glyphicon-trash"></i></a></td>
</tr>
<?php $count=$count+1; ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</tbody>
</table>
</div>
<!-- /.box-body -->
</div>
<!-- /.box -->
</div>
<!-- /.col -->
</div>
<!-- /.row -->
</section>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('admin.head', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
Anons79 File Manager Version 1.0, Coded By Anons79
Email: [email protected]