scootersam / crud-models
Automatically generate crud api endpoints and vue components for specific models
0.0.1
2018-08-19 19:37 UTC
Requires
- php: >=7.0
- doctrine/dbal: ^2.8
- illuminate/support: ~5.6.0
Requires (Dev)
- orchestra/testbench: ~3.6.0
- phpunit/phpunit: ~7.0
This package is auto-updated.
Last update: 2024-10-29 05:10:50 UTC
README
Package description: CHANGE ME
Installation
Install via composer
composer require scootersam/crud-models
Register Service Provider
Note! This and next step are optional if you use laravel>=5.5 with package auto discovery feature.
Add service provider to config/app.php
in providers
section
ScooterSam\CrudModels\ServiceProvider::class,
Register Facade
Register package facade in config/app.php
in aliases
section
ScooterSam\CrudModels\Facades\CrudModels::class,
Publish Configuration File
php artisan vendor:publish --provider="ScooterSam\CrudModels\ServiceProvider" --tag="config"
Usage
CHANGE ME
Security
If you discover any security related issues, please email sam@idevelopthings.com instead of using the issue tracker.
Credits
This package is bootstrapped with the help of melihovv/laravel-package-generator.