diff --git a/app/Services/Admin/Finance/Payroll/PayrollPeriodService.php b/app/Services/Admin/Finance/Payroll/PayrollPeriodService.php index d33412d..4223308 100644 --- a/app/Services/Admin/Finance/Payroll/PayrollPeriodService.php +++ b/app/Services/Admin/Finance/Payroll/PayrollPeriodService.php @@ -50,7 +50,7 @@ public function getCurrentOrCreate(): PayrollPeriod $now = now(); $cuttingDay = 5; - if ($now->day < $cuttingDay) { + if ($now->day <= $cuttingDay) { $year = $now->year; $month = $now->month; } else {