0
3

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 リレーションhasManyに対して、さらにwithを使って、親-子-孫のリレーションを簡単に作る

Posted at

受注情報のOrderテーブルから一覧表示し、
一覧の中にあるサブループに、受注明細があるケースで、商品IDが受注明細に含まれているとします。
商品IDは、商品マスターテーブルに登録されている商品IDとします。

受注情報-受注詳細情報-商品マスタとつなげたい時に、ModelのhasManyやhasOneにwithでつなげることができる。

/** Order Model内
 * 受注明細とリレーションし、受注明細は商品マスタとリレーションしたデータを取得する。
 */
public function orderItems()
{
    return $this->hasMany('App\Models\OrderItem','orderID','id')->with('item')->withTrashed();
}

================================================

/**  OrderItem Model内
 * Items と関連付け
 */
public function item()
{
    return $this->hasOne('App\Models\Items','id','itemID')->withTrashed();
}

これはとても素晴らしいです。withTrashed()を付けておき、
ソフトデリートの商品マスタからも、取得することができるようにしておく。
これを早く知りたかったですね。

0
3
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
0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?