vicodersvn/laravel-kit

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

Extension kit for Laravel Project

1.0.6 2018-06-26 09:17 UTC

This package is auto-updated.

Last update: 2024-09-08 07:17:10 UTC


README

Table of Contents

Installation

Composer

Execute the following command to get the latest version of the package:

composer require vicodersvn/laravel-kit

Laravel

>= laravel5.5

ServiceProvider will be attached automatically

Other

In your config/app.php add Vicoders\LaravelKit\Providers\LaravelKitServiceProvider::class to the end of the providers array:

'providers' => [
    ...
    Vicoders\LaravelKit\Providers\LaravelKitServiceProvider::class,
],

Command

Create register basic module
php artisan make:module register --type=basic
Create register api module
php artisan make:module register --type=api
Create category basic module
php artisan make:module category --type=basic
Create category api module
php artisan make:module category --type=api
Create post basic module
php artisan make:module post --type=basic
Create post api module
php artisan make:module post --type=api
Create testimonial basic module
php artisan make:module testimonial --type=basic
Create testimonial api module
php artisan make:module testimonial --type=api
Create product basic module
php artisan make:module product --type=basic
Create product api module
php artisan make:module product --type=api