improvements on new vendors table

This commit is contained in:
jouls 2024-04-26 14:26:32 +08:00
parent e30cbcebd7
commit 88ae2713bb
1 changed files with 3 additions and 1 deletions

View File

@ -1239,6 +1239,7 @@ $allSignups = array_merge($all_customers, $all_vendors);
foreach (array_reverse($all_vendors) as $x => $val) {
$formattedSignupDate = date('m-d-Y', strtotime($val['createdAt']));
$imageUrl = $val['vendor_image'];
$shopName = $val['user_login'];
$fullName = $val['first_name'] . ' ' . $val['last_name'];
$email = $val['user_email'];
if ($formattedSignupDate >= $weekAgoDate && $formattedSignupDate <= $currentDate) {
@ -1254,7 +1255,8 @@ $allSignups = array_merge($all_customers, $all_vendors);
alt="customer image">
</div>
<div class="media-body align-self-center">
<h6 class="mt-0 text-dark font-weight-medium"><?php echo $fullName; ?></h6>
<h6 class="mt-0 text-dark font-weight-medium"><?php echo $shopName; ?></h6>
<small><?php echo $fullName; ?> || </small>
<small><?php echo $email; ?></small>
</div>
</div>