I have a Sellers collection and a Buyers collection like below:
$sellers = collect([id=1 , qty = 5 , price = 100],
[id=2 , qty = 3 , price = 110],
[id=3 , qty = 2 , price = 115]);
$buyers = collect([id=1 , qty = 2 , price = 115],
[id=2 , qty = 4 , price = 105],
[id=3 , qty = 3 , price = 100]);
How can I create a new collection after filling Sellers and Buyers list?
(I am looking to get something like :
$output = ([seller_id = 1, buyer_id = 1 , fill_price = 100, fill_qty = 2],
[seller_id = 1, buyer_id = 2 , fill_price = 100, fill_qty = 3]);
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…