由于Query构建器的build.gradle
函数在我需要A集合时返回一个数组,有没有办法将Laravel Query Builder转换为Eloquent Builder?
compile group: 'org.bytedeco', name: 'javacv', version: '1.1'
compile group: 'org.bytedeco.javacpp-presets', name: 'opencv', version: '3.0.0-1.1', classifier: "windows-x86"
答案 0 :(得分:5)
Laravel附带collect
助手将数组转换为集合:
$collection = collect(DB::table('table1')->get());
我的a proposal on Github可以使用查询构建器的get
方法获得下一版本的Laravel返回集合实例。