first commit

This commit is contained in:
dev-chiefworks
2022-05-31 16:21:53 -04:00
commit f76abffdcd
5978 changed files with 1078901 additions and 0 deletions
@@ -0,0 +1,26 @@
<hr/>
<h4 class="text-center">Activities cards</h4>
<table class="activities-cards-table table-bordered table-condensed table-hover table-striped table-condensed d-none mb-15" style="background-color:#f0f8ff;" width="100%">
<thead class="bg-indigo">
<tr>
<th>Card ID</th>
<th>Description</th>
<th>Action</th>
<th>Card Icon</th>
</tr>
</thead>
<tbody>
<?php foreach($activities_cards ?? [] as $item){ ?>
<tr>
<td><?=$item['card_id']??''?></td>
<td><?=$item['detail_data']['description']??''?></td>
<td><?=$item['detail_data']['action']??''?></td>
<td><?=$item['detail_data']['card_icon']??''?></td>
</tr>
<?php }
if(empty($activities_cards ?? [])){
echo '<tr class="text-center"><td colspan="100%">Empty result</td></tr>';
}
?>
</tbody>
</table>