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();
错误代码:
$res = Category::delete($id);
修改:
$res = Category::where('cate_id',$id)->delete();