Fixes #225: Client ID Number not showing under client detail
This commit is contained in:
parent
80b6687047
commit
42abd5f8e0
1 changed files with 2 additions and 2 deletions
|
|
@ -133,7 +133,7 @@ class Client extends EntityModel
|
|||
$str = '';
|
||||
|
||||
if ($this->id_number) {
|
||||
$str .= '<i class="fa fa-vat-number" style="width: 20px"></i>'.$this->vat_number;
|
||||
$str .= '<i class="fa fa-id-number" style="width: 20px"></i>'.trans('texts.id_number').': '.$this->id_number;
|
||||
}
|
||||
|
||||
return $str;
|
||||
|
|
@ -144,7 +144,7 @@ class Client extends EntityModel
|
|||
$str = '';
|
||||
|
||||
if ($this->vat_number) {
|
||||
$str .= '<i class="fa fa-vat-number" style="width: 20px"></i>'.$this->vat_number;
|
||||
$str .= '<i class="fa fa-vat-number" style="width: 20px"></i>'.trans('texts.vat_number').': '.$this->vat_number;
|
||||
}
|
||||
|
||||
return $str;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue