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