diff --git a/app/Livewire/Forms/Studio/Setting/ProfileForm.php b/app/Livewire/Forms/Studio/Setting/ProfileForm.php index b2ce7e1..6f00b1b 100644 --- a/app/Livewire/Forms/Studio/Setting/ProfileForm.php +++ b/app/Livewire/Forms/Studio/Setting/ProfileForm.php @@ -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;