Skip to main content

Task

This module adds 1 resource: Tasks.

Installation

composer require qore/tasks

After you installed the module publish its contents:

php artisan vendor:publish --tag=qore.tasks.db --force
php artisan vendor:publish --tag=qore.tasks.frontend --force
# Optional:
php artisan vendor:publish --tag=qore.tasks.config

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.

Make sure to also install and enable sub-dependencies if necessary (e.g. qore/timeline).

Usage

Add to menu

You can add the resources in your GlobalsController:

 if (module_is_active('qore/tasks')) {
$tab->addResourceMenuItem(resource('tasks'));
}