标签: php mysql laravel-5 eloquent
我使用Eloquent创建了一个动态创建的查询对象,并希望使用它来创建表格,并使用$ query-> get();有谁知道是否可以将该查询对象转换为“创建表格为”语句?运行MySQL和Laravel 5.4。
示例,希望将这些结果创建为新表与返回结果:
$response = $query->limit($perPage)->offset($offset)->orderBy($orderBy, $direction)->get();