두 개의 테이블 product_price 및 trade_channel을 결합해야했습니다. 내부 결합을 사용할 때
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();
이 광고는 나에게 지식을 추가했습니다. –