Created
January 16, 2018 10:39
-
-
Save nesk/ea7e200eafb53c9798ae79b54d0e0aae to your computer and use it in GitHub Desktop.
Laravel default error page (1/2)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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