v3.2.109
#14095
Replies: 1 comment
-
|
#14063 Is generate error, public static function getDatePickerProgramacionFecha(): DatePicker
{
return DatePicker::make('fecha')
->label(__('general.labels.date'))
->required()
//->rules(['required', 'date', self::getUniqueValidationRule()])
->timezone(config('app.timezone'))
->native(false)
->displayFormat('d/m/Y')
->format('Y-m-d')
->firstDayOfWeek(1)
->closeOnDateSelection()
->minDate(now()->subDays(1))
->maxDate(now()->addYear())
->disabledDates([
])
->suffixIcon('heroicon-o-calendar')
->prefixIcon('heroicon-m-calendar-days')
->prefixIconColor('primary')
->placeholder(__('general.placeholders.select_date'))
->weekStartsOnMonday()
->closeOnDateSelection()
->readonly(false);
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
What's Changed
focusedDatelogic inDateTimePickerby @smiliyas in Enhanced defaultfocusedDatelogic inDateTimePicker#14063New Contributors
Full Changelog: v3.2.108...v3.2.109
This discussion was created from the release v3.2.109.
Beta Was this translation helpful? Give feedback.
All reactions