@@ -19,6 +19,7 @@ was pretty tough. So i decided to create a much more easier way of communicating
1919* [ Installation] ( #installation )
2020* [ Instantiate] ( #instantiate )
2121* [ Init.php File] ( #init.php-file )
22+ * [ BootLoader] ( #bootLoader )
2223* [ Database Connection] ( #database-connection )
2324* [ Database Disconnect] ( #database-disconnect )
2425* [ App Debug ENV] ( #app-debug-env )
@@ -171,6 +172,19 @@ autoloader_start([
171172| Everywhere in your project, instead of the ` vendor/autoload.php ` file. |
172173| This is totally optional. |
173174
175+ ## BootLoader
176+ - If you do not want to include or use the ` Init.php ` file
177+ - All you need do is call the bootloader, to start your application.
178+
179+ ```
180+ use builder\Database\Capsule\AppManager;
181+
182+ AppManager::bootLoader();
183+
184+ or
185+
186+ app_manager()->bootLoader();
187+ ```
174188
175189## Database Connection
176190- You have the options to connect to multiple database
@@ -1236,6 +1250,7 @@ class Post extends Model{
12361250| env() | Same as ` $db->env() ` |
12371251| env_update() | Same as ` Env::updateENV ` method |
12381252| env_orm() | Return instance of ` (new Env) ` class |
1253+ | app_manager() | Return instance of ` (new AppManager) ` class |
12391254| import() | Return instance of ` (new DBImport)->import() ` method |
12401255| migration() | Return instance of ` (new Migration) ` class |
12411256| schema() | Return instance of ` (new Schema) ` class |
0 commit comments