Welcome Home

This is the home page rendered through the routing system!

🛣️ Routing

All requests go through index.php, which uses the Router to match URLs to controllers.


View Debug Info

🎮 Controllers

Controllers handle the business logic and return views or JSON responses.


View Users

👁️ Views

Views are simple PHP files that render HTML. They're wrapped in layouts automatically.


About Page

How This Page Was Rendered

  1. You requested GET /
  2. Apache's .htaccess rewrote this to index.php
  3. The Router matched / to HomeController::index()
  4. The controller called $this->view('home/index', $data)
  5. The View class rendered home/index.php inside layouts/main.php

Rendered at: 2026-02-03 10:55:13