From 8c53851c711d253fd40a3727adfa0322401ee67b Mon Sep 17 00:00:00 2001 From: Andrew Wallo Date: Mon, 4 Nov 2024 18:36:45 -0500 Subject: [PATCH] fix #75 --- app/Filament/Company/Clusters/Settings/Pages/Localization.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;