null, 'today' => [$now->copy()->startOfDay(), $now->copy()->endOfDay()], 'this_week' => [$now->copy()->startOfWeek(), $now->copy()->endOfWeek()], 'this_month' => [$now->copy()->startOfMonth(), $now->copy()->endOfMonth()], 'last_month' => [ $now->copy()->subMonthNoOverflow()->startOfMonth(), $now->copy()->subMonthNoOverflow()->endOfMonth(), ], 'this_quarter' => [$now->copy()->startOfQuarter(), $now->copy()->endOfQuarter()], 'this_year' => [$now->copy()->startOfYear(), $now->copy()->endOfYear()], 'last_year' => [ $now->copy()->subYearNoOverflow()->startOfYear(), $now->copy()->subYearNoOverflow()->endOfYear(), ], default => null, }; } }