feat: apply currency formatting to base salary in profile form

This commit is contained in:
Yoga Pangestu 2026-01-05 22:52:54 +07:00
parent b508deb76c
commit a638760713

View File

@ -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;