$error_messages]); } else { view('errors/500', ['error_messages' => []]); } }); // if config loads successfully use that value instead $debug = config('debug'); unset($debug); Route::get('/', fn() => view('pages/home')); Route::group(function() { require __DIR__ . '/willychat.php'; }); Route::get('/test/$whatever?', function($whatever = 'Default Value') { echo htmlspecialchars($whatever); }); Route::get('/error', fn() => 1 / 0); // since no route was matched we show a page not found error http_response_code(404); view('errors/404');