| Current Path : /home/webg5288/www/laravel_kendal/vendor/filament/forms/src/Concerns/ |
| Current File : /home/webg5288/www/laravel_kendal/vendor/filament/forms/src/Concerns/CanBeHidden.php |
<?php
namespace Filament\Forms\Concerns;
trait CanBeHidden
{
public function isHidden(): bool
{
return (bool) $this->getParentComponent()?->isHidden();
}
public function isVisible(): bool
{
return ! $this->isHidden();
}
}