There was an error while loading. Please reload this page.
The Configuration loader are responsible to read and return the configurations in a form of array.
You need to create a .php file in the config directory, for example, the env.php (Environment Variables configurations):
config
<?php return [ 'DEBUG' => 1, 'SHOW_EXECUTION_TIME' => true ];
The configuration loader can access configuration files in the config directory easily:
$config = Config::get('env'); echo($config['DEBUG']); //returns 1
Visit our website for tutorials: stupidlysimple.github.io