label('Lompat ke Tanggal') ->icon('heroicon-o-calendar-days') ->schema([ DatePicker::make('date') ->label('Pilih Tanggal') ->placeholder(fn () => now()->addMonth(10)->format('l, d F Y')) ->required() ->native(false) ->displayFormat('l, d F Y'), ]) ->action(function (array $data, $livewire) { $livewire->setOption('date', $data['date']); }) ->modalWidth(Width::Large); } }