quasar/cms

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

Quasar CMS package

Installs: 63

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Open Issues: 2

pkg:composer/quasar/cms

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

This package is auto-updated.

Last update: 2025-09-25 01:42:30 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