diff --git a/app/Filament/Company/Clusters/Settings/Pages/Localization.php b/app/Filament/Company/Clusters/Settings/Pages/Localization.php index ea62a029..f500e70e 100644 --- a/app/Filament/Company/Clusters/Settings/Pages/Localization.php +++ b/app/Filament/Company/Clusters/Settings/Pages/Localization.php @@ -184,7 +184,7 @@ protected function getFinancialAndFiscalSection(): Component ->softRequired() ->columnSpan(1) ->options(function (Get $get) { - $month = $get('fiscal_year_end_month'); + $month = (int) $get('fiscal_year_end_month'); $daysInMonth = now()->month($month)->daysInMonth;