Appearance
静态 make 方法创建一个新的集合实例
use Illuminate\Support\Collection; Collection::make([1, 2, 3]); // [1, 2, 3] // 等同于使用 collect 方法 collect([1, 2, 3]); // [1, 2, 3]