for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
if (!function_exists('dd')) {
function dd($data) {
dump($data);
die;
exit
In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.
}
In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.