コード例 #1
0
ファイル: NodeRepository.php プロジェクト: nutsdo/rp-wechat
 public function boot()
 {
     $boots = Node::whereHas('parents', function ($q) {
         $q->where('node_parent_id', '=', '0');
     })->get();
     return $boots;
 }