Infolists\Components\Actions\Action::make('Show')
->color('primary')
->hidden($this->showCredentials)
->action(function () {
$this->showCredentials = true;
}),
Infolists\Components\Actions\Action::make('Hide')
->color('primary')
->hidden(! $this->showCredentials)
->action(function () {
$this->showCredentials = false;
}),
Infolists\Components\Actions\Action::make('Show')
->color('primary')
->hidden($this->showCredentials)
->action(function () {
$this->showCredentials = true;
}),
Infolists\Components\Actions\Action::make('Hide')
->color('primary')
->hidden(! $this->showCredentials)
->action(function () {
$this->showCredentials = false;
}),