2 results
Sorted by relevance
Modules / General
How do I create a custom module?
When interacting with the admin, especially when making a custom module, it is important to require
aerocommerce/admin in the modules’
composer.json file.
Scaffolding modules
Modules can be created using artisan, a command line interface supplied with Larave...
Modules / Vue
How do I register a custom Vue component for my module?
To register a Vue component for our module, we will need to create a JavaScript file for our components and in order to initialise Vue.
Link assets
In order to link all the assets, which is a necessary step of registering a Vue component, we need to add a func...