id; // optional foreach ($foodItems as $food) { // randomly assign 1-3 addons $randomAddons = $addons->random(rand(1, 3)); foreach ($randomAddons as $addon) { DB::table('addon_food')->insert([ 'restaurant_id' => $restaurantId, 'food_item_id' => $food->id, 'addon_id' => $addon->id, 'status' => 1, 'created_at' => now(), 'updated_at' => now(), ]); } } } }