以下にリストされている 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を持つ他のすべてを取得するにはどうすればよいですか?