Package Data | |
---|---|
Maintainer Username: | shabaz-ejaz |
Package Create Date: | 2017-09-11 |
Package Last Update: | 2017-09-11 |
Home Page: | |
Language: | CSS |
License: | MIT |
Last Refreshed: | 2024-11-24 15:06:23 |
Package Statistics | |
---|---|
Total Downloads: | 5 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 2 |
Total Forks: | 1 |
Total Open Issues: | 0 |
This is a clean Laravel 5.4.36 project which uses Quarx CMS
Start by installing dependencies:
composer install
npm install
Publish the assets:
php artisan vendor:publish
Generate an app key:
php artisan key:generate
Set up Quarx CMS:
php artisan quarx:setup
This will set up the CMS, run the migrations and will create an admin account for you with the following credentials:
Once dependencies are installed, run with:
php artisan serve
This will open up a Laravel development server at localhost:8000
Login to Admin Panel by visiting: www.yoursite.com/quarx/dashboard
To use the CRUD builder you need to run the following command:
php artisan crudmaker:new Post --api --ui=bootstrap --migration --schema="id:increments,name:string,author:string" --relationships="belongsToMany|\App\Models\Tag|tags"
You can use the following options for the above command:
php artisan crudmaker:new ModelName
{--api}
{--ui=bootstrap|semantic}
{--serviceOnly}
{--withFacade}
{--withoutViews}
{--migration}
{--schema}
{--relationships}
You can view the full documentation for this here