我发现数据透视表非常复杂,我不知道接下来该做什么或我做错了什么,我找到了一些教程,但对我的需求没有帮助。< / p>
我有projects
和users
,many-to-many
关系。
一个project hasMany users
和一个user hasMany projects
。
我现在拥有的项目没有与用户的关系。
这是我到目前为止所做的:
项目表
class CreateProjectsTable extends Migration {
public function up()
{
Schema::create('projects', function(Blueprint $table)
{
$table->increments('id');
$table->string('name');
$table->date('completion_date');
$table->integer('completed')->default(0);
$table->integer('active')->default(0);
$table->timestamps();
});
}
用户表
class CreateUsersTable extends Migration {
public function up()
{
Schema::create('users', function(Blueprint $table)
{
$table->increments('id');
$table->integer('company_id');
$table->integer('project_id');
$table->integer('usertype_id')->default(0);
$table->string('username');
$table->string('password');
});
}
项目用户表(数据透视)
class CreateProjectUsersTable extends Migration {
public function up()
{
Schema::create('project_users', function(Blueprint $table)
{
$table->increments('id');
$table->integer('project_id')->references('id')->on('project');;
$table->integer('user_id')->references('id')->on('user');;
});
}
用户模型
public function projects() {
return $this->belongsToMany('App\Project', 'project_users', 'user_id', 'project_id');
}
项目模型
public function users() {
return $this->belongsToMany('App\User', 'project_users', 'project_id', 'user_id');
}
项目控制器
public function index(Project $project)
{
$projects = $project->with('users')->get();
dd($projects);
$currenttime = Carbon::now();
//return view('project.index', array('projects' => $projects, 'currenttime' => $currenttime));
return view('user.index', compact('projects'));
}
答案 0 :(得分:2)
User
模型中的关系不正确。你必须交换钥匙。
public function projects() {
return $this->belongsToMany('App\Project', 'project_users', 'user_id', 'project_id');
}
关于最新评论的修改:
不要考虑数据透视表,只要你的关系设置正确,我相信它们就是这样,Laravel为你处理所有这些。
现在$projects->users
没有任何意义,因为projects
没有users
。 projects
只是Project
的集合。该集合中的每个Project
都将具有users
关系。您必须遍历集合才能查看每个Project
的用户。
foreach($projects as $project) {
foreach($project->users as $user) {
echo $user;
}
}