├── Config ├── Backend.php └── Notification.php ├── Controllers └── BaseController.php ├── Helpers ├── array_helper.php ├── calc_helper.php ├── date_helper.php ├── error_helper.php └── string_helper.php ├── LICENSE ├── Libraries └── Notification.php ├── README.md ├── Views ├── home │ └── index.php ├── layouts │ ├── application.php │ ├── backend.php │ └── nolayout.php └── login │ └── index.php └── composer.json /Config/Backend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpmont/codeigniter-4-toolkit/HEAD/Config/Backend.php -------------------------------------------------------------------------------- /Config/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpmont/codeigniter-4-toolkit/HEAD/Config/Notification.php -------------------------------------------------------------------------------- /Controllers/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpmont/codeigniter-4-toolkit/HEAD/Controllers/BaseController.php -------------------------------------------------------------------------------- /Helpers/array_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpmont/codeigniter-4-toolkit/HEAD/Helpers/array_helper.php -------------------------------------------------------------------------------- /Helpers/calc_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpmont/codeigniter-4-toolkit/HEAD/Helpers/calc_helper.php -------------------------------------------------------------------------------- /Helpers/date_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpmont/codeigniter-4-toolkit/HEAD/Helpers/date_helper.php -------------------------------------------------------------------------------- /Helpers/error_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpmont/codeigniter-4-toolkit/HEAD/Helpers/error_helper.php -------------------------------------------------------------------------------- /Helpers/string_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpmont/codeigniter-4-toolkit/HEAD/Helpers/string_helper.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpmont/codeigniter-4-toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /Libraries/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpmont/codeigniter-4-toolkit/HEAD/Libraries/Notification.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpmont/codeigniter-4-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /Views/home/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpmont/codeigniter-4-toolkit/HEAD/Views/home/index.php -------------------------------------------------------------------------------- /Views/layouts/application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpmont/codeigniter-4-toolkit/HEAD/Views/layouts/application.php -------------------------------------------------------------------------------- /Views/layouts/backend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpmont/codeigniter-4-toolkit/HEAD/Views/layouts/backend.php -------------------------------------------------------------------------------- /Views/layouts/nolayout.php: -------------------------------------------------------------------------------- 1 | renderSection('yield') ?> 2 | -------------------------------------------------------------------------------- /Views/login/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpmont/codeigniter-4-toolkit/HEAD/Views/login/index.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpmont/codeigniter-4-toolkit/HEAD/composer.json --------------------------------------------------------------------------------