Download the PHP package dainsys/qa_app without Composer
On this page you can find all versions of the php package dainsys/qa_app. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download dainsys/qa_app
More information about dainsys/qa_app
Files in dainsys/qa_app
Download dainsys/qa_app
More information about dainsys/qa_app
Files in dainsys/qa_app
Vendor dainsys
Package qa_app
Short Description A Quality Audit Application based on Laravel
License MIT
Package qa_app
Short Description A Quality Audit Application based on Laravel
License MIT
Please rate this library. Is it a good library?
Informations about the package qa_app
Quality Audit App
A Quality Audit Application based on Laravel
Features
Create An Audit Form, which can then be assigned to a campaign or Client. Establish the goal percentage for this form. The total points for the form will be calculated by the sum of the value of it's questions. Each question has a value. The portion of points of each question will be determined by the question option selected when filling the audit form.
Instalation
- Require it using composer:
composer require dainsys/qa_app
- The package relies on packages dainsys/components and dainsys/locky. Make sure you fallow their installation guides.
- Migrate the database tables by running the
php artisan migrate
command. - Import app navigations by adding the
@include('qa_app::_nav-links')
in your nav-barPublishing Assets
It is totally optional, but a good practice to publish packages assets. To do so:
- You can publish config running command
php artisan vendor:publish --tag=qa_app.config
- You can publish and customize the views by running command
php artisan vendor:publish --tag=qa_app.views
- To publish the migrations just run
php artisan vendor:publish --tag=qa_app.migrations
- Alternatively, you can publish all assets by running
php artisan vendor:publish --provider=Dainsys\QAApp\QAAppServiceProvider
Initial Configuration
- You can publish config running command
- Create QA Forms using route
.../qa_app/form
. Forms are the master piece of the process. They hold the results of each evaluation. - Define your types of questions by visiting route
.../qa_app/question_type
- Good options are
True Or False
,Scales
- Good options are
- Define your question options by visiting route
.../qa_app/question_option
. Define which percentage of the points belongs to each option. True or False could be 100% for true, 0% for false. Do the same for your scales questions.- Define the percentage of points required to pass the audit. In other words, what percentage of the sum of points of the questions associated to a form needs to be reached to pass an audit.
- Create all the questions and associate them to a form and to a question type using route
.../qa_app/question
. Assign how many points each question weights withing the audit form. - Create app roles and assign them to your users in route
/locky/roles
:- For Admin users, default role name is
QA App Admin
as defined in the package config file. Feel free to publish and update as needed. - For Auditor users, default role name is
QA App Auditor
as defined in the package config file. Feel free to publish and update as needed. - For User users, default role name is
QA App User
as defined in the package config file. Feel free to publish and update as needed.
- For Admin users, default role name is
- Make sure your layouts view can recieve the javascripts by adding the
@stack('scripts')
directive.
All versions of qa_app with dependencies
PHP Build Version
Package Version
Requires
php Version
>=7.0|^8.0
illuminate/support Version ^5.0|^6.0|^7.0|^8.0
illuminate/console Version ^5.0|^6.0|^7.0|^8.0
consoletvs/charts Version 6.*
dainsys/locky Version ^2.0
livewire/livewire Version ^2.3
dainsys/components Version ^1.1
illuminate/support Version ^5.0|^6.0|^7.0|^8.0
illuminate/console Version ^5.0|^6.0|^7.0|^8.0
consoletvs/charts Version 6.*
dainsys/locky Version ^2.0
livewire/livewire Version ^2.3
dainsys/components Version ^1.1
The package dainsys/qa_app contains the following files
Loading the files please wait ....