Laravel 11.8.0
Есть две модели, Waste и WasteComponent с отношением многие ко многим, есть таблица, их связывающая:
В модели Waste есть метод:
public function components() {
return $this->belongsToMany(WasteComponent::class, 'waste_waste_components', 'waste_id', 'waste_component_id');
}
В модели WasteComponent есть метод:
public function wastes() {
return $this->belongsToMany(Waste::class, 'waste_waste_components', 'waste_component_id', 'waste_id');
}
Как можно получить, например, список моделей Waste, которые связаны с WasteComponent с ID [1,2,3]?