feat: apply currency formatting to base salary in profile form
This commit is contained in:
parent
b508deb76c
commit
a638760713
@ -58,7 +58,7 @@ public function setProfile(Employee $employee): void
|
||||
|
||||
$this->full_name = $employee->full_name;
|
||||
$this->phone_number = $employee->phone_number;
|
||||
$this->base_salary = $employee->base_salary;
|
||||
$this->base_salary = formatCurrencyNumber($employee->base_salary);
|
||||
$this->birthdate = $employee->birthdate;
|
||||
$this->hire_date = formatDateLocalized($employee->hire_date);
|
||||
$this->address = $employee->address;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user