home/bumble2020/domainwizard.net/vendor/filament/tables/src/Filters/Concerns/HasFormSchema.php000064400000001313150031564630026234 0ustar00formSchema = $schema; return $this; } public function getFormSchema(): array { $schema = $this->evaluate($this->formSchema); if ($schema !== null) { return $schema; } $field = $this->getFormField(); if ($field === null) { return []; } return [$field]; } protected function getFormField(): ?Field { return null; } }