laravle5中验证 exists:table,column 连接的默认的数据库,如果table不是默认数据库中的表呢

laravle5中验证 exists:table,column 连接的默认的数据库,如果table是其它数据库的表,请教这个验证怎么写?
已邀请:

Usual

赞同来自:

用DB类自己写原生SQL?

JohnLui

赞同来自:

DB::connection('mysql')->table('pages')
        ->whereExists(function($query)
        {
            $query->select(\DB::raw(1));
        })
        ->get());

要回复问题请先登录注册