软删除可以添加where条件语句么? 怎么用啊?教教我
//原有数据库
//where条件软删除
$res = Test::destroy(function($query){
$query->where('id','<',11);
});
dump($res);
//结果 -----ok