To add a new feature to October CMS, follow the steps given below:
Open your October CMS backend
Navigate to Settings > Updates & Plugins > Create Plugin to generate a new plugin.
In the
/plugins/authorname/pluginname/Plugin.php
define your feature in the ‘boot()’ or ‘register()’ methods
Create models, controllers, or components under the
/models
,
/controllers
, and
/components
folders.
Register your components or backend features in ‘Plugin.php’.
Test in the backend and deploy or install the plugin.