quasar/cms

There is no license information available for the latest version (v1.0.12) of this package.

Quasar CMS package

v1.0.12 2020-03-19 01:26 UTC

This package is auto-updated.

Last update: 2024-04-24 22:34:46 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/cms

2 - Execute publish command

php artisan vendor:publish --provider="Quasar\Cms\CmsServiceProvider"

3 - Execute migrations and seed database

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

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

# Cms
#import ./../vendor/quasar/cms/src/Quasar/Cms/GraphQL/inputs.graphql
#import ./../vendor/quasar/cms/src/Quasar/Cms/GraphQL/types.graphql

type Query {
    # others imports

    # Cms
    #import ./../vendor/quasar/cms/src/Quasar/Cms/GraphQL/queries.graphql
}

type Mutation {
    # others imports

    # Cms
    #import ./../vendor/quasar/cms/src/Quasar/Cms/GraphQL/mutations.graphql
}

Tips

Documentation