document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. protected function errorBro(Exception $e)
  2. {
  3.     $whoops = new \\Whoops\\Run;
  4.     $whoops->pushHandler(new \\Whoops\\Handler\\PrettyPageHandler());
  5.  
  6.     return new \\Illuminate\\Http\\Response(
  7.         $whoops->handleException($e),
  8.         $e->getStatusCode(),
  9.         $e->getHeaders()
  10.     );
  11. }
');