Laravel6.0で、マニュアルのようなテーブル構成で、中間のテーブルの値も取りたいと考えています
users
id - integer
supplier_id - integersuppliers
id - integerhistory
id - integer
user_id - integer
php
1class User extends Model 2{ 3 public function history() 4 { 5 return $this->hasMnayThrough(History::class, Supplier::class); 6 } 7}
とし、例えば
php
1$entities = User::with('history')->hogehoge()->get();
とやると、
$entities->history で、孫テーブル(history)の値が取れますが、
suppliersテーブルの値はどのようにすれば取れますか?
よろしくお願い申し上げます。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/10/27 08:03