Laravel很多人都渴望加载

时间:2014-03-14 16:44:21

标签: php laravel laravel-4 eloquent

我试图隐藏多对多关系中的列,但现在没有成功。 我有:

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
有人请,任何其他解决方案?

1 个答案:

答案 0 :(得分:0)

是的,在您的模型上,您希望隐藏的任何列都应添加到隐藏数组中。

protected $hidden = array('password');