Skip to content

Instantly share code, notes, and snippets.

@spresnac
Created July 16, 2020 13:07
Show Gist options
  • Save spresnac/70448cdf5bbd88b527f2befa392492f3 to your computer and use it in GitHub Desktop.
Save spresnac/70448cdf5bbd88b527f2befa392492f3 to your computer and use it in GitHub Desktop.
Prevent the Builder to execute with duplicate joins (causes mariadb error)
/** @var Builder $result */
// try to prevent duplicate joins that will cause an error on execute
$result->getQuery()->joins = collect($result->getQuery()->joins)->unique('table')->toArray();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment