Documentation

Controllers

Controllers can be found in the root folder of the project.

Ax example of default controllers provided by Boostack are index.php or login.php

To create a new controller, you can create a brand new file in the root folder of your project and follow the logic above:

<?php
    require_once "core/environment_init.php";


    // INSERT HERE YOUR LOGIC


?>