public function handle($request, Closure $next)
 {
     try {
         $response = $next($request);
     } catch (\Exception $e) {
         $this->exceptionHandler->report($e);
         $response = $this->exceptionHandler->render($request, $e);
     }
     return Helper::appendDebugbar($request, $response);
 }