下面列出了 3 个表:
用户
id username
订单
id price
历史
id historable_id historable_type
我想在订单视图中检索具有特定历史 ID 的所有订单
订单型号:
public function history(){
return $this->morphMany('History','historable');}
订单控制器:
public function index(){
var_dump(History::find(1)->historable->toArray());}
历史 id 为 1 的订单不止一个,但只找到第一个订单。如何获得具有相同历史 ID 的所有其他人?