diff --git a/src/Relationship.php b/src/Relationship.php index 740cfa3..5047884 100644 --- a/src/Relationship.php +++ b/src/Relationship.php @@ -56,4 +56,10 @@ class Relationship { ]); return $output; } + public function one() { + return $this->build()->one(); + } + public function many() { + return $this->build()->many(); + } }