1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Laravel:キー名が id 以外の時にbelongsToManyメソッドを使う方法

Posted at

環境

  • Laravel 8.x

概要

  • テーブルが多対多の関係の時にbelongsToManyメソッドを使うが、キー名が id 以外の場合どうするのか調べた

結論

具体例

以下のテーブルがあるとする

  • users
user_num name
1 foo
2 bar
  • roles
role_num name
1 baz
2 qux
  • role_user(中間テーブル)
id user_number role_number
1 1 1
2 1 2

上記の様な多対多の関係をEloquentのリレーションで実現する↓

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class User extends Model
{
    /**
     * このユーザーに属する役割
     */
    public function roles()
    {
        return $this->belongsToMany(Role::class, 'role_user', 'user_number', 'role_number', 'user_num', 'role_num', );
    }
}
引数まとめ
  1. 関連するモデルクラスの名前
  2. リレーションの中間テーブルのテーブル名
  3. 接続元の中間テーブルの外部キー名
  4. 接続先の中間テーブルの外部キー名
  5. 接続元のキー名
  6. 接続先のキー名

Eloquent:リレーション 8.x Laravelでは第4引数の紹介までだったが、Laravel APIを見ると第7引数まで指定できると分かった。
これからはLaravel APIをちゃんと見よう。。。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?