|\FluentBooking\Framework\Database\Orm\Relations\HasOne */ protected $localRelationship; /** * Create a pending has-many-through or has-one-through relationship. * * @param TDeclaringModel $rootModel * @param \FluentBooking\Framework\Database\Orm\Relations\HasMany|\FluentBooking\Framework\Database\Orm\Relations\HasOne $localRelationship */ public function __construct($rootModel, $localRelationship) { $this->rootModel = $rootModel; $this->localRelationship = $localRelationship; } /** * Define the distant relationship that this model has. * * @template TRelatedModel of \FluentBooking\Framework\Database\Orm\Model * * @param string|(callable(TIntermediateModel): (\FluentBooking\Framework\Database\Orm\Relations\HasOne|\FluentBooking\Framework\Database\Orm\Relations\HasMany|\FluentBooking\Framework\Database\Orm\Relations\MorphOneOrMany)) $callback * @return ( * $callback is string * ? \FluentBooking\Framework\Database\Orm\Relations\HasManyThrough<\FluentBooking\Framework\Database\Orm\Model, TIntermediateModel, TDeclaringModel>|\FluentBooking\Framework\Database\Orm\Relations\HasOneThrough<\FluentBooking\Framework\Database\Orm\Model, TIntermediateModel, TDeclaringModel> * : ( * $callback is callable(TIntermediateModel): \FluentBooking\Framework\Database\Orm\Relations\HasOne * ? \FluentBooking\Framework\Database\Orm\Relations\HasOneThrough * : \FluentBooking\Framework\Database\Orm\Relations\HasManyThrough * ) * ) */ public function has($callback) { if (is_string($callback)) { $callback = fn () => $this->localRelationship->getRelated()->{$callback}(); } $distantRelation = $callback($this->localRelationship->getRelated()); if ($distantRelation instanceof HasMany) { $returnedRelation = $this->rootModel->hasManyThrough( get_class($distantRelation->getRelated()), get_class($this->localRelationship->getRelated()), $this->localRelationship->getForeignKeyName(), $distantRelation->getForeignKeyName(), $this->localRelationship->getLocalKeyName(), $distantRelation->getLocalKeyName(), ); } else { $returnedRelation = $this->rootModel->hasOneThrough( get_class($distantRelation->getRelated()), get_class($this->localRelationship->getRelated()), $this->localRelationship->getForeignKeyName(), $distantRelation->getForeignKeyName(), $this->localRelationship->getLocalKeyName(), $distantRelation->getLocalKeyName(), ); } if ($this->localRelationship instanceof MorphOneOrMany) { $returnedRelation->where($this->localRelationship->getQualifiedMorphType(), $this->localRelationship->getMorphClass()); } return $returnedRelation; } /** * Handle dynamic method calls into the model. * * @param string $method * @param array $parameters * @return mixed */ public function __call($method, $parameters) { if (Str::startsWith($method, 'has')) { return $this->has(Str::of($method)->after('has')->lcfirst()->toString()); } throw new BadMethodCallException(sprintf( 'Call to undefined method %s::%s()', static::class, $method )); } }