var_dumpling
var_dumpling copied to clipboard
Redirect page
Hello,
I just installed the chrome extension after seeing laravels tuutorials. In the tutorial the var_dump displays nice inside the page after submitting a form, but in my case when i submit the form it redirect me to a page with the var_dump. How can i display the var_dump inside the page without redirect?
Thanks
Try calling die after the var_dump
var_dump($var);die;