Questionnaires
This module adds the ability to create and manage questionnaires
Installation
composer require qore/questionnaires
After you installed the module publish its contents:
php artisan vendor:publish --tag=qore.questionnaires.config --force
php artisan vendor:publish --tag=qore.questionnaires.db --force
After you have published the contents of the module run the migrations:
php artisan tenants:migrate
After you have installed the module you need to enable it in your Qore application.
Usage
Add to menu
You can add the resources in your GlobalsController:
if (module_is_active('qore/questionnaires')) {
$group->addResourceMenuItem(resource('questionnaires'));
}