Vicoders Laravel Kit
Table of Contents
Installation
Composer
Execute the following command to get the latest version of the package:, (*1)
composer require vicodersvn/laravel-kit
Laravel
>= laravel5.5
ServiceProvider will be attached automatically, (*2)
Other
In your config/app.php
add Vicoders\LaravelKit\Providers\LaravelKitServiceProvider::class
to the end of the providers
array:, (*3)
'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