Skip to content

Instantly share code, notes, and snippets.

@ajtrichards
Created November 26, 2021 22:52
Show Gist options
  • Save ajtrichards/8d9699eb12ea9b18294d6c6579065616 to your computer and use it in GitHub Desktop.
Save ajtrichards/8d9699eb12ea9b18294d6c6579065616 to your computer and use it in GitHub Desktop.
<?php
$builder = MyModel::where('active', 1);
$query = str_replace(array('?'), array('\'%s\''), $builder->toSql());
$query = vsprintf($query, $query->getBindings());
dd($query);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment