示例#1
0
 public function getTree($id)
 {
     // if (!Request::ajax()) {
     // return array();
     // }
     if ($id == 0) {
         $id = Auth::user()->id;
     }
     $htmltree = MemberAPI::getAllDownline($id);
     return $htmltree;
 }