2017 © Pedro Peláez
 

project laravel-quarx

A pre-packaged Laravel 5.4 project which includes Quarx CMS and CRUD Scaffolding.

image

shabaz-ejaz/laravel-quarx

A pre-packaged Laravel 5.4 project which includes Quarx CMS and CRUD Scaffolding.

  • Monday, September 11, 2017
  • by shabaz-ejaz
  • Repository
  • 1 Watchers
  • 1 Stars
  • 0 Installations
  • CSS
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

alt text, (*1)

Clean Laravel Project

This is a clean Laravel 5.4.36 project which uses Quarx CMS, (*2)

What is this repository for?

  • Fresh Laravel Projects
  • Version: 5.4.36

Requirements

  • Node 4.* or better
  • PHP 7.0.* or better

Installation

Start by installing dependencies:, (*3)

composer install
npm install

Publish the assets:, (*4)

php artisan vendor:publish

Generate an app key:, (*5)

php artisan key:generate

Set up Quarx CMS:, (*6)

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:, (*7)

  • admin@example.org
  • admin

Running

Once dependencies are installed, run with:, (*8)

php artisan serve

This will open up a Laravel development server at localhost:8000, (*9)

Admin Access

Login to Admin Panel by visiting: www.yoursite.com/quarx/dashboard, (*10)

CRUD Builder

To use the CRUD builder you need to run the following command:, (*11)

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:, (*12)

php artisan crudmaker:new ModelName
{--api}
{--ui=bootstrap|semantic}
{--serviceOnly}
{--withFacade}
{--withoutViews}
{--migration}
{--schema}
{--relationships}

You can view the full documentation for this here, (*13)

Contribution guidelines

  • Writing tests
  • Code review
  • Other guidelines

Who do I talk to?

  • Repo owner or admin
  • Other community or team contact

The Versions

11/09 2017

dev-master

9999999-dev

A pre-packaged Laravel 5.4 project which includes Quarx CMS and CRUD Scaffolding.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework