Skip to content

Instantly share code, notes, and snippets.

@MubinSayed
Created September 23, 2022 10:14
Show Gist options
  • Save MubinSayed/8c41b51337b5fb80d74f42c6ff7d0716 to your computer and use it in GitHub Desktop.
Save MubinSayed/8c41b51337b5fb80d74f42c6ff7d0716 to your computer and use it in GitHub Desktop.
Laravel - Combines SQL and its bindings
/**
* Combines SQL and its bindings
*
* @param \Eloquent $query
* @return string
*/
public static function getEloquentSqlWithBindings($query)
{
return vsprintf(str_replace('?', '%s', $query->toSql()), collect($query->getBindings())->map(function ($binding) {
$binding = addslashes($binding);
return is_numeric($binding) ? $binding : "'{$binding}'";
})->toArray());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment