Skip to content

Instantly share code, notes, and snippets.

@adrianodias8
Created January 21, 2022 11:05
Show Gist options
  • Select an option

  • Save adrianodias8/9d0fd23458de630b24dbdb0c7e7571ad to your computer and use it in GitHub Desktop.

Select an option

Save adrianodias8/9d0fd23458de630b24dbdb0c7e7571ad to your computer and use it in GitHub Desktop.
Laravel Print query with bindings
<?php
dd(vsprintf(str_replace('?', '%s', $query->toSql()), collect($query->getBindings())->map(function ($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