This commit is contained in:
sriramv 2023-07-24 17:32:56 +05:30
parent 7ff4057a1c
commit 40c689beea
2 changed files with 4 additions and 12 deletions

View File

@ -60,15 +60,11 @@
<tr>
<td
style="padding: 10px; border-bottom: 1px solid #ededed; border-right: 1px solid #ededed; width: 35%; font-weight:500; color:rgba(0,0,0,.64)">
Transaction by :</td>
Customer Name :</td>
<td
style="padding: 10px; border-bottom: 1px solid #ededed; color: #455056;">
<?= $profile[0]['name']." ".$profile[0]['last_name'] ?>
<?php
if($profile[0]['mobile'] != ''){
$phone_number = preg_replace('/[^\w]_/', '', $profile[0]['mobile']);
echo "(".$phone_number.")"; }
?>
</tr>
</tbody>

View File

@ -62,15 +62,11 @@
<tr>
<td
style="padding: 10px; border-bottom: 1px solid #ededed; border-right: 1px solid #ededed; width: 35%; font-weight:500; color:rgba(0,0,0,.64)">
Transaction by :</td>
Customer Name :</td>
<td
style="padding: 10px; border-bottom: 1px solid #ededed; color: #455056;">
<?= $profile[0]['name']." ".$profile[0]['last_name']; ?>
<?php
if($profile[0]['mobile'] != ''){
$phone_number = preg_replace('/[^\w]_/', '', $profile[0]['mobile']);
echo "(".$phone_number.")"; }
?>
</tr>
</tbody>