ejat
ejat
FFilament
Created by Tieme on 12/9/2023 in #❓┊help
Table groups change default sort
hi, so how you solve it? i cant found the option to change from asc to desc
5 replies
FFilament
Created by wulfheart on 10/25/2023 in #❓┊help
Option to show password field
thank you for this package, its worked
17 replies
FFilament
Created by wulfheart on 10/25/2023 in #❓┊help
Option to show password field
i tried this, still same
17 replies
FFilament
Created by wulfheart on 10/25/2023 in #❓┊help
Option to show password field
Forms\Components\TextInput::make('password')->label('Password')
->placeholder('Password')
->type('password')
->live()
->suffixAction(
Forms\Components\Actions\Action::make('toggle-password-visibility')
->icon('heroicon-o-eye')
->iconSize('md')
->action(function ($component) {
if ($component->gettype('password')) {
$component->type('text');
} else {
$component->type('password');
}
})
)
Forms\Components\TextInput::make('password')->label('Password')
->placeholder('Password')
->type('password')
->live()
->suffixAction(
Forms\Components\Actions\Action::make('toggle-password-visibility')
->icon('heroicon-o-eye')
->iconSize('md')
->action(function ($component) {
if ($component->gettype('password')) {
$component->type('text');
} else {
$component->type('password');
}
})
)
17 replies
FFilament
Created by wulfheart on 10/25/2023 in #❓┊help
Option to show password field
i tried this, but this method only can show the password, but it cant hide back the password
17 replies