The problem is because you are trying to get a field value directly on a Builder. you should use get() or first() to run the query and get the result before trying to get field value. You can change this line to get the result:
$dbToken = $exists->select('token');
it should become
$dbToken = $exists->select('token')->first();
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…