Skip to content

Instantly share code, notes, and snippets.

@nesk
Created January 16, 2018 10:39
Show Gist options
  • Save nesk/ea7e200eafb53c9798ae79b54d0e0aae to your computer and use it in GitHub Desktop.
Save nesk/ea7e200eafb53c9798ae79b54d0e0aae to your computer and use it in GitHub Desktop.
Laravel default error page (1/2)
<?php
/**
* Render the given HttpException.
*
* @param \Symfony\Component\HttpKernel\Exception\HttpException $e
* @return \Symfony\Component\HttpFoundation\Response
*/
protected function renderHttpException(HttpException $e)
{
return parent::renderHttpException($e);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment