Laravel Eloquent使用数据透视表的多对多关系

时间:2014-10-12 19:02:35

标签: mysql database laravel-4 many-to-many eloquent

我正在创建自己的项目管理器,目前我有一个projectsusers和一个project_users表。我试图在模型中创建关系,将一个项目与许多用户相关联,但我从未创建过多对多的关系。我查看了文档并尝试了各种示例,但没有一个适用于我。

这是我的ProjectController:

public function single($ id){

$project = Project::with('client','projecttypes','storys', 'sprints', 'projectusers')->find( $id )->toArray();

return View::make('projects.single', array( 'project' => $project ) );

}

这只是抓取一个项目和所有相关模型并将它们返回到视图中。

我的项目模型:

class Project extends Eloquent {

    /**
     * The database table used by the model.
     *
     * @var string
     */
    protected $table = 'projects';

    protected $fillable = array( 'client_id', 'title', 'description', 'type_id', 'status', 'hours_estimated', 'hours_actual', 'date_estimated', 'date_due', 'date_completed', 'created_at', 'updated_at' );

    public function projectusers() {
        return $this -> hasMany( 'User', 'id', 'user_id' );
    }

}

我的用户型号:

use Illuminate\Auth\UserTrait;
use Illuminate\Auth\UserInterface;
use Illuminate\Auth\Reminders\RemindableTrait;
use Illuminate\Auth\Reminders\RemindableInterface;

class User extends Eloquent implements UserInterface, RemindableInterface {

    use UserTrait, RemindableTrait;

    /**
     * The database table used by the model.
     *
     * @var string
     */
    protected $table = 'users';

    /**
     * The attributes excluded from the model's JSON form.
     *
     * @var array
     */
    protected $hidden = array( 'password', 'remember_token' );

    protected $fillable = array( 'client_id', 'title', 'first_name', 'last_name', 'address', 'city', 'state', 'zip', 'email', 'password', 'status', 'created_at', 'updated_at', 'remember_token', '_token' );

    public function project() {
        return $this -> belongsToMany('Project');
    }

}

最后我的ProjectUsers模型:

class ProjectUsers extends Eloquent {

    /**
     * The database table used by the model.
     *
     * @var string
     */
    protected $table = 'project_users';

    protected $fillable = array( 'project_id', 'assigner_id', 'user_id', 'notifications', 'created_at', 'updated_at' );

    public function project() {
        $this -> belongsTo('Project');
    }

}

数据库中的所有字段都列在模型$fillable中,主要ID id除外。

我只需要弄清楚如何使用数据透视表将所有用户分配到特定项目,我们将非常感谢您的帮助!

由于

1 个答案:

答案 0 :(得分:0)

我在Laravel论坛上得到了答案,现在是:

ProjectController

$project = Project::with('client','projecttypes','storys', 'sprints', 'users')->find( $id )->toArray();

Project型号

public function users() {
    return $this -> belongsToMany('User');
}

User型号

public function projects() {
    return $this -> belongsToMany('User');
}

这对我有用!