Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.8k views
in Technique[技术] by (71.8m points)

php - how can I fill two collection lists in laravel?

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]);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...