quasar/crm

There is no license information available for the latest version (dev-master) of this package.

Quasar Crm package

dev-master 2020-03-29 21:54 UTC

This package is auto-updated.

Last update: 2024-03-29 04:32:36 UTC


README

Total Downloads Latest Stable Version

Quasar is a application that generates a control panel where you can create custom solutions.

Installation

1 - After install Laravel framework, execute on console:

composer require quasar/crm

2 - Execute publish command

php artisan vendor:publish --provider="Quasar\Crm\CrmServiceProvider"

3 - Execute migrations and seed database

composer dump-autoload
php artisan migrate
php artisan db:seed --class="CrmSeeder"

4 - Add graphQL routes to graphql/schema.graphql file

# Crm
#import ./../vendor/quasar/crm/src/Quasar/Crm/GraphQL/inputs.graphql
#import ./../vendor/quasar/crm/src/Quasar/Crm/GraphQL/types.graphql

type Query {
    # others imports

    # Crm
    #import ./../vendor/quasar/crm/src/Quasar/Crm/GraphQL/queries.graphql
}

type Mutation {
    # others imports

    # Crm
    #import ./../vendor/quasar/crm/src/Quasar/Crm/GraphQL/mutations.graphql
}