12
15

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 5 years have passed since last update.

【Laravel】同一テーブル内のリレーション

Last updated at Posted at 2020-01-10

同一テーブル内でのリレーションとなる場合

例)twitter的なアプリでユーザ間のフォロー関係を表現したいとき

三人のユーザ(フィル、カイ、ラミー)のフォロー関係が下のようになっている
フォロー関係.png
usersテーブル

id name
1 フィル
2 カイ
3 ラミー

関連を持たせるのはユーザ同士、つまり同一テーブル内のデータ同士。
もちろん、ユーザーは複数人のユーザをフォローするため多対多のリレーションになる。
→中間テーブルとしてfollowersテーブルにユーザ間の関係をまとめる。

followersテーブル

following_id(フォローする側) followed_id(フォローされる側)
1 2
1 3
2 1
3 2
following_idをフォローする側のID、followed_idをフォローされる側のIDとすると、このように関係性が表せる。

リレーションメソッド

User.php
public function followers()
{
   return $this->belongsToMany(self::class, "followers", "followed_id", "following_id");
}

public function follows()
{
   return $this->belongsToMany(self::class, "followers", "following_id", "followed_id");
}

第一引数で参照するテーブルを指定するが、今回は同一テーブルなので自身のテーブルになる。第二引数には中間テーブルとなるfolloersテーブルを指定。

followers()はフォローされているユーザIDから、フォローしているユーザIDにアクセスする。

follows()はその逆向きのアクセス。

12
15
1

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
12
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?