前提・実現したいこと
PHP(Laravel)で簡単なECサイトのオリジナルサービスを作っています。
以下のサイト(https://cpoint-lab.co.jp/article/202006/15763/)を参考にして3つ以上のテーブル情報を取得したいです。
というのは、2つの1対多で繋がれた中間テーブルでなおかつその中間テーブルに外部キーのカラム情報が入っていたからです。
なお、関連するテーブル情報は以下です。
itemsテーブル←1対多→shipping_itemsテーブル←多対1→shippings
id id id
item_name item_id
など商品情報 shipping_id
発生している問題・エラーメッセージ
Type errorです。このエラーを解決したいです。
Type error: Return value of App\Item::hasManyThroughWrapper() must be an instance of App\HasManyThrough, instance of Illuminate\Database\Eloquent\Relations\HasManyThrough returned
該当のソースコード
Controller
1// 各商品の注文一覧(出品一覧から) 2 public function orderMyItem($item_id){ 3 $item = Item::find($item_id); 4 $my_item_orders = $item-> shippings()->paginate(10); 5 6 $data = [ 7 'my_item_orders' => $my_item_orders]; 8 9 return view('users.myShippingOrder', $data); 10 } 11
Shippingモデル内にて public function shippings(): HasManyThrough { return $this->hasManyThroughWrapper(Shipping::class, ShippingItem::class, 'item_id', 'shipping_id'); } public function hasManyThroughWrapper( string $tgtClass, string $throughClass, string $throughHasThisPrimaryKeyColumn, string $throughHasTgtPrimaryKeyColumn ): HasManyThrough { return $this->hasManyThrough( $tgtClass, $throughClass, $throughHasThisPrimaryKeyColumn, (new $tgtClass())->getKeyName(), $this->getKeyName(), $throughHasTgtPrimaryKeyColumn ); }
### 試したこと 型などを確認しましたが、それでは無さそうです。
あなたの回答
tips
プレビュー