scootersam / crud-models
Automatically generate crud api endpoints and vue components for specific models
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/scootersam/crud-models
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: 2025-09-29 01:59:44 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.