18
12

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]withメソッドを理解する

Posted at

はじめに

今回はwithメソッドの使い方について学んだので、ご紹介します。

環境

  • Laravel:8.83.4

1. withメソッドを使ってリレーション先のデータを取得する

以前書いた記事のUserモデルを使って進めていきます。

1-1. リレーションが1つの場合

$users = App\User::with('posts')->get();

withメソッドの引数にはモデルで定義したリレーションメソッド名を文字列で指定します。
今回の場合、Userモデルにpostsメソッドを定義したので、'posts'と指定します。

1-2. リレーションが複数ある場合

$users = App\User::with(['posts', 'target'])->get();

withメソッドの引数に配列を渡すことで複数のリレーションデータを取ることができます。

1-3. ネストしたリレーションの場合

Postモデルに下記のようなリレーションを定義した場合、

app/Models/Post.php
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Model;

class Post extends Model
{
//略
    /**
     * リレーション - commentsテーブル
     *
     * @return \Illuminate\Database\Eloquent\Relations\HasMany
     */
    public function comments(): HasMany
    {
        return $this->hasMany(Comment::class);
    }
//略
}
$users = App\User::with('posts.comments')->get();

.でつなぐことでネストしたリレーション先のデータを取得することができます。

1-4. 指定したカラムのみ取得したい場合

$users = App\User::with('posts:id,user_id,title')->get();

:の後に取得したいカラムを指定することで特定のカラムを取得することができます。

1-5. 条件を追加したい場合

$users = App\User::with(['posts' => function ($query) {
    $query->where('content', 'like', '%good%');
}])->get();

取得するリレーションデータに条件を追加して限定したい場合は、withメソッドの中でクロージャを使うことで実現できます。
上記はcontentgoodを含むリレーションデータだけをEagerロードしたいという場合を想定しています。

2. おわりに

withメソッドにはさまざまな使い方があることがわかりました。
今回は割愛しましたが、特定の条件下でのみEagerロードしたい場合にはloadメソッドが利用できるので、うまく使い分けていきたいです。

3. 参考文献

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?