You can update Laravel's dd() function in order to force your browser to show dd result in a readable way :D
if (! function_exists('dd')) {
/**
* Dump the passed variables and end the script.
*
* @param mixed
* @return void
*/
function dd(...$args)
{
http_response_code(500);
foreach ($args as $x) {
(new Dumper)->dump($x);
}
die(1);
}
}