@dd - Debugging and Stopping Execution
Syntax
@dd(variable)Example
@set(user, ['name' => 'Ammar', 'age' => 13])
@dd(user)
<p>This line will not be executed.</p>Output
array(
"name" => "Ammar",
"age" => 13
)Notes
Last updated