回答編集履歴

2

mapでキーは保持されるの確認したので編集

2020/05/20 14:19

投稿

rururu3
rururu3

スコア5545

test CHANGED
@@ -1,15 +1,11 @@
1
- [Laravel 5.5 コレクション map](https://readouble.com/laravel/5.5/ja/collections.html#method-map)
2
-
3
-
4
-
5
1
  ```php
6
2
 
7
- ->map(function ($value) {
3
+ @foreach ($foods as $key => $food)
8
4
 
9
- return $value->sum('quantity');
5
+ {{$food}} {{ $key }}
10
6
 
11
- });
7
+ @endforeach
12
8
 
13
9
  ```
14
10
 
15
- 合計とう新しい配列を作ってるからそうるかと。
11
+ でいかな

1

リンクテキストがわかりにくいのでちゃんとした文に

2020/05/20 14:18

投稿

rururu3
rururu3

スコア5545

test CHANGED
@@ -1,4 +1,4 @@
1
- [map](https://readouble.com/laravel/5.5/ja/collections.html#method-map)
1
+ [Laravel 5.5 コレクション map](https://readouble.com/laravel/5.5/ja/collections.html#method-map)
2
2
 
3
3
 
4
4