Added extension field to client header

This commit is contained in:
johnny@pittpc.com 2021-01-20 16:20:48 -05:00
parent 35ad7f08d9
commit 3dcda9de05
1 changed files with 8 additions and 1 deletions

View File

@ -141,7 +141,14 @@ if(isset($_GET['client_id'])){
<?php
if(!empty($client_phone)){
?>
<i class="fa fa-fw fa-phone text-secondary ml-1 mr-2 mb-2"></i> <?php echo $client_phone; ?>
<i class="fa fa-fw fa-phone text-secondary ml-1 mr-2 mb-2"></i> <?php echo $client_phone; ?>
<?php
if(!empty($client_extension)){
?>
x<?php echo $client_extension; ?>
<?php
}
?>
<br>
<?php
}