Answers for "laravel collection times"

PHP
0

laravel collection times

$collection = Collection::times(10, function ($number) {
    return $number * 9;
});

$collection->all();

// [9, 18, 27, 36, 45, 54, 63, 72, 81, 90]
Posted by: Guest on July-24-2021

Browse Popular Code Answers by Language