I want to have a custom 500 error page. This can be done simply by creating a view in errors/500.blade.php
.
This is fine for production mode, but I no longer get the default exception/ debug pages when in debug mode (the one that looks grey and says "Whoops something went wrong").
Therefore, my question is: how can I have a custom 500 error page for production, but the original 500 error page when debug mode is true?
if(env("APP_ENV") == "production"){ abort(500); }
is a pretty simple approach.abort($code)
returns the views found inerrors/{code}.blade.php
– Tim Lewis