1. Now there are two controllers under two folders. A _ method
2. Because in the business, according to the conditions, the methods of different controllers are called, for example:
$temp;
if(true){
requre_once($temp."Controller.php");
(new $temp())->index();
}
are there any methods or features based on the laravel framework to call? Make it elegant. I seem to remember that the thinkphp3.2 framework has an R function.