// id为2的会员积分增加6
$Vip::where('id',2)->setInc('score',6);
// id为2的会员积分增加1
$Vip::where('id',2)->setInc('score');
// id为2的会员积分减少6
$Vip::where('id',2)->setDec('score',6);
// id为2的会员积分减少1
$Vip::where('id',2)->setDec('score');

// id为2的会员积分增加6
$Vip::where('id',2)->setInc('score',6);
// id为2的会员积分增加1
$Vip::where('id',2)->setInc('score');
// id为2的会员积分减少6
$Vip::where('id',2)->setDec('score',6);
// id为2的会员积分减少1
$Vip::where('id',2)->setDec('score');