Added options for month to date and year to date

This commit is contained in:
Nathan PERIER
2022-10-04 15:17:11 +02:00
parent c49f3fcccf
commit 5b43a2e99f

View File

@@ -147,6 +147,16 @@ trait GetConfigurationData
$index = (string) trans('firefly.last_thirty_days');
$ranges[$index] = [$thirty, new Carbon];
// month to date:
$monthBegin = Carbon::now()->startOfMonth();
$index = (string) trans('firefly.month_to_date');
$ranges[$index] = [$monthBegin, new Carbon];
// year to date:
$yearBegin = Carbon::now()->startOfYear();
$index = (string) trans('firefly.year_to_date');
$ranges[$index] = [$yearBegin, new Carbon];
// everything
$index = (string) trans('firefly.everything');
$ranges[$index] = [$first, new Carbon];