1.setAppends
在你需要的 controller 中,使用 Model 的 setAppends 方法,Laravel 源码如下
/**
* Set the accessors to append to model arrays.
*
* @param array $appends
* @return $this
*/
public function setAppends(array $appends)
{
$this->appends = $appends;
return $this;
}
2.使用 Eloquent: API 资源