Created
November 26, 2021 22:52
-
-
Save ajtrichards/8d9699eb12ea9b18294d6c6579065616 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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