Welcome, to the core
From here you can manage various components of your Buan-based application.
Some interfaces, such as this welcome screen, are public (anyone can view them) whilst others are password protected (you can find your application password in the /path/to/config/app.php file.)
Want to hide these core interfaces?
Although there's no real danger in leaving these core interfaces accessible to the public (those that can potentially do any harm are password protected anyway), you do have the option of removing them if you wish. To do so simply follow these instructions:
- Create a new file, /path/to/your/controllers/CoreController.php
-
In this new file, add the following code:
<?php class CoreController extends Controller { } ?> - Save the file.
- Now refresh this page and you should no longer be able to access the core interfaces!