You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 16, 2021. It is now read-only.
I think it is helpful if there is a method that will substitue question mark with the bindings value for debugging queries.. so you can copy-paste it in your sql editor. This is very useful for debugging long complex queries.
How about sql()?
User::where('is_active, 1)->sql();
// this will print
// select * from `users` where `is_active` = 1
// instead of
// select * from `users` where `is_active` = ?
I think it is helpful if there is a method that will substitue question mark with the bindings value for debugging queries.. so you can copy-paste it in your sql editor. This is very useful for debugging long complex queries.
How about
sql()
?The text was updated successfully, but these errors were encountered: