vicodersvn / laravel-kit
Extension kit for Laravel Project
Installs: 32
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
pkg:composer/vicodersvn/laravel-kit
This package is auto-updated.
Last update: 2025-12-08 10:10:53 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