I am having troubles with larval because the dd() functions returns with a lots of HTML on it. Since I am debugging an API with cURL on my terminal I want to see the raw output with no additional HTML.
Any solution for disabling the new dd() feature and rather use it like in Laravel 4?
I think you can just use die() then. Assuming you have a $users
variable...
die($users);
This was the old dd function so if you want, you can also create your own method:
function ddOld()
{
array_map(function($x) { var_dump($x); }, func_get_args()); die;
}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community