Codeigniter HMVC based starter kit.
This repository contains following features
Clone the repo.
Install dependencies
composer install
you are ready to GO!
To start the development server, run following command.
php app serve
You may also change the default host and port as
php app serve <host> <port>
To generate a module folder, run following command.
php app make:module <module_name>
You may not define sub-directories by adding ‘/‘ in between.
To generate a model, run following command.
php app make:model <model_name> <parent_name> --table="<table_name>"
You may defined sub-directories by adding ‘/‘ between directories. Please note that the models will be autoloaded using composer classmap autoloading, so you will need to run ‘composer dump-autoload’ if creating models manually.
By default all the models will be extended to Eloquent ORM base class, if you wish to use CI query builder, extend model to ‘CI_Model’ instead of Eloquent in ‘MY_Model’ class in core directory.
To generate a controller, run following command.
php app make:controller <controller_name> <core_class>
To generate a controller inside a module, run following command.
php app make:controller <controller_name> <core_class> --module="<module_name>"
Here core class can be ‘MY_Controller’.
Eloquent ORM has been integrated, to use it effective you will be required to create seperate models for each database table. To use a model, load it using following snippet
$this->load->model(<Model>)
Once loaded you can access the table as per eloquent syntax, for example:
Model::get(id)
To learn more about using eloquent, refer the Laravel’s Eloquent user guide