当有 getter 时,如何访问列的原始值?
How to access to the raw value of a column when there is a getter?
当模型上有 getter 方法时 class 我怎样才能访问它的原始值?
例如,如果模型中有一个 public function getFooAttribute(){return 4;)}
方法,如何获取原始 table 列值 foo
?
为了知道我想出了 $model->getAttributes()['foo']
语法。
但是我想应该有更好的方法来实现它。
当模型上有 getter 方法时 class 我怎样才能访问它的原始值?
例如,如果模型中有一个 public function getFooAttribute(){return 4;)}
方法,如何获取原始 table 列值 foo
?
为了知道我想出了 $model->getAttributes()['foo']
语法。
但是我想应该有更好的方法来实现它。