我正在创建自己的项目管理器,目前我有一个projects
,users
和一个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
除外。
我只需要弄清楚如何使用数据透视表将所有用户分配到特定项目,我们将非常感谢您的帮助!
由于
答案 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');
}
这对我有用!