2つのテーブルproduct_priceとtrade_channelsを結合する必要がありました。内部結合を使用する場合、
のproduct_priceのIDは削除されています。内部laravelに参加していませんP
が私のコードである
DB::table('product_price')->where('product_id',$id)->where('action','customer_price')
->join('customers','product_price.action_id','=','customers.id')
->get();
これは私のための知識を追加しました –