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'));
}