bbone/application/modules/Asset/views/depreciation_list.php
2023-01-20 09:57:40 +05:30

63 lines
2.3 KiB
PHP

<div class="col-md-12 col-sm-12 ">
<div class="x_panel">
<div class="x_title">
<h2>Depreciation Details </h2>
<div class="clearfix"></div>
</div>
<div class="x_content">
<div class="row">
<div class="col-sm-12">
<div class="card-box table-responsive">
<table id="datatable-buttons" class="table table-striped table-bordered dataTable no-footer" width="100%">
<thead>
<tr class="headings">
<th class="column-title" width="20%">Category </th>
<th class="column-title" width="20%">Asset Name </th>
<th class="column-title" width="20%">Tag </th>
<th class="column-title" width="20%">Serial </th>
<th class="column-title" width="20%">Model </th>
<th class="column-title" width="15%">Purchase Date </th>
<th class="column-title" width="15%">Purchase Cost </th>
<th class="column-title" width="15%">Current Value </th>
<th class="column-title" width="20%">Status </th>
</tr>
</thead>
<tbody>
<?php foreach ($tableData as $key => $value) { ?>
<tr class="even pointer">
<td class=" "> <?php echo $value['category']; ?> </td>
<td class=" "> <?php echo $value['asset_name']; ?> </td>
<td class=" "> <?php echo $value['tag']; ?> </td>
<td class=" "> <?php echo $value['serial']; ?> </td>
<td class=" "> <?php echo $value['model']; ?> </td>
<td class=" "> <?php echo $value['purchase_date']; ?> </td>
<td class=" "> <?php echo $value['purchase_cost']; ?> </td>
<td class=" "> <?php echo $value['current_value']; ?> </td>
<td class=" "> <?php echo $value['status']; ?> </td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<br/>