Set first and last day of month in DatePicker

I'm having difficulty setting a start and end date for the current month in the datepicker on a custom page, I'd appreciate any help if possible.
No description
Solution:
```php $this->form->fill([ 'dataInicio' => ..., 'dataFim' => ... ]);...
Jump to solution
4 Replies
Solution
Saade
Saade4mo ago
$this->form->fill([
'dataInicio' => ...,
'dataFim' => ...
]);
$this->form->fill([
'dataInicio' => ...,
'dataFim' => ...
]);
Carlos Lopes
Carlos Lopes4mo ago
tks @Saade but not work , datepicker not receive value $this->form->fill([ 'dataInicio' => '2024-02-01' 'dataFim' => '2024-02-29' ]);
Saade
Saade4mo ago
Remove the ->default() from the field, and add ->format()
Carlos Lopes
Carlos Lopes4mo ago
tks @Saade work fine!