]> _ Git - cubedesigners_userdatabase.git/commitdiff
wait #5755 @0.25
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Mon, 27 Feb 2023 15:32:42 +0000 (16:32 +0100)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Mon, 27 Feb 2023 15:32:42 +0000 (16:32 +0100)
src/app/Models/User.php

index 6918bfdeec4352e68970251916d2a9535db7a618..bf3eb9b78b49668e6e739ae100e9101f53783d4a 100644 (file)
@@ -174,13 +174,13 @@ class User extends CubistMagicAuthenticatable
         $name = $this->name;
         $res = '';
         if ($name) {
-            $res .= '<i class="las la-user-shield"></i> ' . $name . '<br>';
+            $res .= $name . '<br>';
         }
-        $res .= '<i class="las la-building"></i> ' . $this->companyName;
+        $res .= '<em> ' . $this->companyName . '</em>';
 
         $invoicable = Permissions::getInvoicableCompany($this->company);
         if ($invoicable != $this->company) {
-            $res .= '<br><i class="las la-file-invoice-dollar"></i> ' . Permissions::getCompanyName($invoicable);
+            $res .= '<br>(€ : ' . Permissions::getCompanyName($invoicable) . ')';
         }
         //$res .= '<br><i class="las la-user-shield"></i> ' . $this->getAdministratorFirstname();
         return $res;