Created
September 23, 2022 10:14
-
-
Save MubinSayed/8c41b51337b5fb80d74f42c6ff7d0716 to your computer and use it in GitHub Desktop.
Revisions
-
MubinSayed created this gist
Sep 23, 2022 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ /** * 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()); }