Forms\Components\TextInput::make('increase_percent')->label('% Increase')
->numeric()
->inputMode('decimal')
->live(onBlur: true)
->afterStateUpdated(function (?string $state, ?string $old) {
Notification::make()
->title('Price Increase Adjusted From ' . $old . ' to' . $state)
->success()
->send();
})
]),
Forms\Components\TextInput::make('increase_percent')->label('% Increase')
->numeric()
->inputMode('decimal')
->live(onBlur: true)
->afterStateUpdated(function (?string $state, ?string $old) {
Notification::make()
->title('Price Increase Adjusted From ' . $old . ' to' . $state)
->success()
->send();
})
]),