From: Vincent Vanwaelscappel Date: Mon, 27 Feb 2023 15:32:42 +0000 (+0100) Subject: wait #5755 @0.25 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=7c8b4e5ca43d67e8490e473acfd2515d609b55f3;p=cubedesigners_userdatabase.git wait #5755 @0.25 --- diff --git a/src/app/Models/User.php b/src/app/Models/User.php index 6918bfd..bf3eb9b 100644 --- a/src/app/Models/User.php +++ b/src/app/Models/User.php @@ -174,13 +174,13 @@ class User extends CubistMagicAuthenticatable $name = $this->name; $res = ''; if ($name) { - $res .= ' ' . $name . '
'; + $res .= $name . '
'; } - $res .= ' ' . $this->companyName; + $res .= ' ' . $this->companyName . ''; $invoicable = Permissions::getInvoicableCompany($this->company); if ($invoicable != $this->company) { - $res .= '
' . Permissions::getCompanyName($invoicable); + $res .= '
(€ : ' . Permissions::getCompanyName($invoicable) . ')'; } //$res .= '
' . $this->getAdministratorFirstname(); return $res;