HEX
Server: Apache
System: Linux p3plzcpnl506847.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: slfopp7cb1df (5698090)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/slfopp7cb1df/public_html/conradinvestmentgroup.com/pm/app/Views/company/company_widget.php
<?php
$company_address = nl2br($company_info->address ? $company_info->address : "");
?>
<?php if (get_setting("invoice_style") == "style_3" && ($bill_from == "invoice" || $bill_from == "estimate" || $bill_from == "order")) { ?>
    <div style="font-size: 20px;"><b><?php echo $company_info->name; ?></b></div>
<?php } else { ?>
    <div><b><?php echo $company_info->name; ?></b></div>
<?php } ?>
<div style="line-height: 3px;"> </div>
<span class="invoice-meta text-default"><?php
    if ($company_address) {
        echo $company_address;
    }
    ?>
    <?php if ($company_info->phone) { ?>
        <br /><?php echo app_lang("phone") . ": " . $company_info->phone; ?>
    <?php } ?>
    <?php if ($company_info->email) { ?>
        <br /><?php echo app_lang("email") . ": " . $company_info->email; ?>
    <?php } ?>
    <?php if ($company_info->website) { ?>
        <br /><?php echo app_lang("website"); ?>: <a style="color:#666; text-decoration: none;" href="<?php echo $company_info->website; ?>"><?php echo $company_info->website; ?></a>
    <?php } ?>
    <?php if ($company_info->vat_number || $company_info->gst_number) {
        if($company_info->vat_number) {
            echo "<br />" . app_lang("vat_number") . ": " . $company_info->vat_number;
        } else {
            echo "<br />" . app_lang("gst_number") . ": " . $company_info->gst_number;
        }
      } ?>
</span>