In v3 I was able to set the default date format in the boot section of the AppServiceProvider using the code below, this does not seem to work in v4, any idea on how to achieve this?
DateTimePicker::configureUsing(fn () => DateTimePicker::$defaultDateDisplayFormat = 'd/m/Y');
DateTimePicker::configureUsing(fn () => DateTimePicker::$defaultDateTimeDisplayFormat = 'd/m/Y H:i');
Table::configureUsing(fn () => Table::$defaultDateDisplayFormat = 'd/m/Y');
Table::configureUsing(fn () => Table::$defaultDateTimeDisplayFormat = 'd/m/Y H:i');
Schema::configureUsing(fn () => Schema::$defaultDateDisplayFormat = 'd/m/Y');
Schema::configureUsing(fn () => Schema::$defaultDateTimeDisplayFormat = 'd/m/Y H:i');