random() 随机返回几个元素
$collection = collect(['one', 'two', 'three', 'four', 'five', 'six', 'seven']);
return $collection->random(2); // 随机返回2个元素
return $collection->random(); // 随机返回一个元素
$collection = collect(['one', 'two', 'three', 'four', 'five', 'six', 'seven']);
return $collection->random(2); // 随机返回2个元素
return $collection->random(); // 随机返回一个元素