コード例 #1
0
ファイル: HasOne.php プロジェクト: sahanh/resto
 public function buildQueryPath()
 {
     //ie:- users/1
     $caller_path = $this->getCallingModel()->getEntityPath();
     //ie:- posts
     $relatives_path = Str::collectionPath($this->getRelatingModel());
     //since it's one to one, relation path should be singular
     $relatives_path = Str::singular($relatives_path);
     //ie:- users/1/post
     return implode('/', array($caller_path, $relatives_path));
 }