Fixed quotest

This commit is contained in:
Igor Scheller 2023-02-26 16:32:02 +01:00
parent 34e9d01c18
commit baca49c53b
1 changed files with 2 additions and 2 deletions

View File

@ -53,8 +53,8 @@ class DesignController extends BaseController
$date = CarbonImmutable::now();
for ($i = 1; $i <= 600; $i++) {
$dateKey = $date->format("Y-m-d");
$formattedDisplayDate = $date->format(__("Y-m-d"));
$dateKey = $date->format('Y-m-d');
$formattedDisplayDate = $date->format(__('Y-m-d'));
$dateSelectOptions[$dateKey] = $formattedDisplayDate;
$date = $date->addDay();
}