where([ 'company_uid' => $companyUid, 'is_enabled' => 1, ])->orderBy('id', 'desc') ->first(); } public static function getComponentInfoByAppid($componentAppid) { return DB::table('wechat_open_platform_infos') ->where([ 'app_id' => $componentAppid, 'is_enabled' => 1, ])->orderBy('id', 'desc') ->first(); } }