Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
// Production php.ini // display_errors = Off // log_errors = On // error_log = /var/log/php_errors.log // In code set_exception_handler(function (Throwable $e) { error_log($e->getMessage() . " in " . $e->getFile() . ":" . $e->getLine()); http_response_code(500); echo "An unexpected error occurred. Please try again."; }); // Laravel: APP_DEBUG=false in production
Result
Open