我试图隐藏多对多关系中的列,但现在没有成功。 我有:
Square.php
public function sitesquares() {
//Trying to use select() but no success
return $this->belongsToMany('Sitesquare', 'square_site', 'square_id', 'site_id')->select( array('square_id','site_id', 'sites.site_name') );
}
Sitesquare.php
public function squares()
{
return $this->belongsToMany('Square', 'square_site');
}
方形控制器
$sites = Square::with(array('sitesquares'=>function ($q)
{
$q->select(array('site_name')); //also don't work
}))->get();
return $sites; //json
有人请,任何其他解决方案?
答案 0 :(得分:0)
是的,在您的模型上,您希望隐藏的任何列都应添加到隐藏数组中。
protected $hidden = array('password');