corso https://vola.udemy.com/course/php-mvc-from-scratch/learn/lecture/40931984#overview
filippo.bertilotti
2024-05-14 2bddb6faf9aeddf40602187c57c421da8ded5c3e
1
2
3
4
5
6
7
8
<?php
namespace App\Controllers\Admin;
 
class Users {
    public function index() {
        echo "admin index";
    }
}