Laravel (filament). how to add mask reactive text input ?
this pattern does not work when input reactive
TextInput::make('expire')
->reactive()
->required()
->length(5)
->mask(fn (Mask $mask) => $mask->pattern('00/00'))
->afterStateUpdated(function (Closure $set, Closure $get, $state) {
//callToapi
}