An overview of the core concepts in Laravel Nightwatch.
?
) used in place of actual values. These are called query parameter bindings, which represent the values that were bound to the query at runtime.
Nightwatch does not capture or display these bound values by design. This is a deliberate decision made to protect your application from unintentionally leaking sensitive or personally identifiable information. Security and data protection are core principles in how we designed Nightwatch.
If you need to troubleshoot a specific query and want to see the values being used, a recommended approach is to log the data manually using Laravel’s Log
facade as contextual information. These logs will appear alongside the query in Nightwatch, giving you better context while still providing greater control over the data that is sent.
Example:
?
represents the email address passed at runtime, which Nightwatch intentionally redacts.