我确实有以下课程:
class BillProduct extends Eloquent {
protected $softDelete = true;
protected $guarded = array();
public static $rules = array();
protected $table = 't_billsproducts';
}
如果我尝试使用
$record = BillProduct::find($idProduct)
$record
将是空的。
protected $softDelete
如果我从上面的类中删除,$record
将包含数据......
数据库中没有软删除的列 - 我想知道,这里发生了什么......
有任何想法吗?谢谢
短剑