We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to export to excel and I'm getting an error:
my Lens code
public static function query(LensRequest $request, $query) { return $request->withOrdering($request->withFilters( $query->select(self::columns()) ->groupBy('products.variant_title') )); }
protected static function columns() { return [ 'products.variant_title', DB::raw('sum(products.variant_quantity) as quantity'), ]; }
please advise how to fix it. thanks :)
The text was updated successfully, but these errors were encountered:
Perhaps good to check these: https://mattstauffer.com/blog/strict-mode-and-other-mysql-customizations-in-laravel-5-2/ The query you pass has some issues in strict mode
Sorry, something went wrong.
No branches or pull requests
I'm trying to export to excel and I'm getting an error:
my Lens code
public static function query(LensRequest $request, $query) { return $request->withOrdering($request->withFilters( $query->select(self::columns()) ->groupBy('products.variant_title') )); }
protected static function columns() { return [ 'products.variant_title', DB::raw('sum(products.variant_quantity) as quantity'), ]; }
please advise how to fix it. thanks :)
The text was updated successfully, but these errors were encountered: