Answer the question
In order to leave comments, you need to log in
How to attach a list of accounts to the list of products?
There is a model with a method
public function instagrams() {
return $this->belongsToMany(AccountInstagram::class, 'products_instagrams');
}
$product->instagrams()->attach($accounts->pluck('id'));
$products->instagrams()->attach($accounts->pluck('id'));
foreach ($products as $product) {
$product->instagrams()->attach($accounts->pluck('id'));
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question