diff --git a/src/Schema/Field/Relationship.php b/src/Schema/Field/Relationship.php index 76627f6..5c0c331 100644 --- a/src/Schema/Field/Relationship.php +++ b/src/Schema/Field/Relationship.php @@ -37,9 +37,9 @@ public function type(string|array $type): static /** * Allow this relationship to be included. */ - public function includable(): static + public function includable(bool $includable = true): static { - $this->includable = true; + $this->includable = $includable; return $this; }