laravel中delete方法出现问题:on-static method Illuminate\Database\Eloquent\Model::delete() should not be called statically

错误代码:
$res = Category::delete($id);

修改:
$res = Category::where('cate_id',$id)->delete();

猜你喜欢

转载自www.cnblogs.com/carious/p/11367349.html