This commit is contained in:
2022-07-13 18:31:13 -04:00
parent ab9dbfad9f
commit 8b03f5b4aa
3 changed files with 40 additions and 88 deletions
+5 -21
View File
@@ -23,7 +23,7 @@
<!--begin::Header-->
<div class="card-header border-0 pt-5">
<h3 class="card-title align-items-start flex-column">
<span class="card-label fw-bolder fs-3 mb-1"><?php echo $dash_title;?> </span>
<span class="card-label fw-bolder fs-3 mb-1">My Offers </span>
</h3>
<div class="card-toolbar">
@@ -39,29 +39,16 @@
<div class="table-responsive">
<table class="table align-middle gs-0 gy-3">
<!--begin::Table head-->
<thead>
<tr style="font-weight: bolder;">
<th class="p-0 " style="width: 120px;">Added<br>Expire</th>
<th class="p-0 min-w-160px">Title<br>Recipient</th>
<th class="p-0 w-100px"></th>
</tr>
</thead>
<!--end::Table head-->
<!--begin::Table body-->
<tbody>
<?php
foreach( $offer_dash_rows as $row){
foreach( $my_offer_rows as $row){
?>
<tr>
<td>
<?=$row->start_job_date?><br>
<?=$row->end_job_date?>
</td>
<td>
<a href="#" class="text-dark fw-bolder text-hover-primary mb-1 fs-6"><?=$row->title?></a>
<span class="text-muted fw-bold d-block fs-7">To : <?=$row->job_to?></span>
<span class="text-muted fw-bold d-block fs-7"><?=$row->description?></span>
Send : <?=$row->sent?><br>
Expire : <?=$row->expire?>
</td>
<td class="text-end">
@@ -78,10 +65,7 @@
<?php
}
?>
</tbody>
<!--end::Table body-->
</table>
</div>