I want to remove header information from laravel 5.1 response. I have used middleware for filter output.
$response = $next($request);
dd($response);
It gives me out put with header information. Check attached screen shot.

How to read either #data or how to remove Header information from $response?
Because when I try to json_decode it shows 'null'
I want JSON to be send only so I have use it with my application.