You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* This configuration file defines the calendar table name, start months for each season and the start month of the fiscal year.
5
-
*
6
-
* @return array
4
+
* Configuration file for the Laravel Calendar Table package.
7
5
*/
8
6
return [
9
7
/**
@@ -13,7 +11,18 @@
13
11
14
12
/**
15
13
* The 'seasons' array defines the start month for each season.
16
-
* Each key is a season name, and each value is the start month for that season.
14
+
*
15
+
* This configuration assumes the meteorological seasons of the Northern Hemisphere, where the seasons are defined as follows:
16
+
* - Spring starts in March (3rd month)
17
+
* - Summer starts in June (6th month)
18
+
* - Autumn starts in September (9th month)
19
+
* - Winter starts in December (12th month)
20
+
*
21
+
* Users in the Southern Hemisphere should reconfigure the seasons approximately six months offset from those of the Northern Hemisphere:
22
+
* - Spring starts in September
23
+
* - Summer starts in December
24
+
* - Autumn starts in March
25
+
* - Winter starts in June
17
26
*/
18
27
'seasons' => [
19
28
'Spring' => 3,
@@ -23,7 +32,13 @@
23
32
],
24
33
25
34
/**
26
-
* The 'fiscal_year_start_month' defines the start month of the fiscal year.
35
+
* The 'fiscal_year_start_month' option defines the start month of the fiscal year.
36
+
*
37
+
* Months are represented as numbers between 1 (January) and 12 (December).
38
+
*
39
+
* In this case, the fiscal year starts in October (10th month). This might be the case for a company or government that operates on a fiscal year that begins on October 1 and ends on September 30 of the following year.
40
+
*
41
+
* Users should adjust this setting to match their own fiscal year. For example, if the fiscal year starts in July, they would set this option to 7.
0 commit comments