vellum/core

Vellum Core

Installs: 83

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Language:JavaScript

dev-master 2020-06-05 01:20 UTC

This package is auto-updated.

Last update: 2024-05-05 09:52:10 UTC


README

  • PHP >= 7.2.0
  • BCMath PHP Extension
  • Ctype PHP Extension
  • JSON PHP Extension
  • Mbstring PHP Extension
  • OpenSSL PHP Extension
  • PDO PHP Extension
  • Tokenizer PHP Extension
  • XML PHP Extension

Database Migration

When you want to migrate database only use the following command:

php artisan migrate

Database Seeding

When you want to seed data use the following command:

php artisan db:seed 

How to create resources

When you want to create resources use the following command:

Example:

php artisan make:module Category

Note: Resource name must be {PascalCase}

Publish all resources

When you want to publish resources use the following command:

Example:

php artisan vendor:publish