Answers for "collection reduce laravel"

PHP
0

laravel reduce

$collection = collect([1, 2, 3]);

$total = $collection->reduce(function ($carry, $item) {
    return $carry + $item;
});

// 6

$total = $collection->reduce(function ($carry, $item) {
    return $carry + $item;
}, 4);

// 10   | where 4 is a initial value
Posted by: Guest on December-14-2020
0

laravel collection reduce

$collection = collect([1, 2, 3]);

$total = $collection->reduce(function ($carry, $item) {
    return $carry + $item;
});

// 6
Posted by: Guest on July-24-2021

Browse Popular Code Answers by Language