Fix DatabaseSeeder fetch key array issue and add exception details dump to 500 error page

This commit is contained in:
Hamza-Ayed
2026-06-05 01:33:26 +03:00
parent 0f65e68f5f
commit 325424b59a
3 changed files with 11 additions and 2 deletions

View File

@@ -113,6 +113,7 @@ class App
if (file_exists($viewPath)) {
ob_start();
$message = $e->getMessage();
$exception = $e;
include $viewPath;
$content = ob_get_clean();
$this->response->html($content, $code);