willy.club/routes/start.php
2022-11-29 12:49:29 +00:00

14 lines
337 B
PHP

<?php
use WillySoft\Http\ErrorHandler;
use WillySoft\Http\Route;
ErrorHandler::register(function($error_messages) {
view('errors/500', ['error_messages' => $error_messages]);
});
Route::get('/', fn() => view('pages/home'));
// since no route was matched we show a page not found error
http_response_code(404);
view('errors/404');