Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dorsone/laravel-service-generator
With this library, you can generate Services and automatically connect them to Controllers
https://github.com/dorsone/laravel-service-generator
laravel laravel-framework laravel-package laravel-service php php-package
Last synced: 2 days ago
JSON representation
With this library, you can generate Services and automatically connect them to Controllers
- Host: GitHub
- URL: https://github.com/dorsone/laravel-service-generator
- Owner: Dorsone
- License: mit
- Created: 2022-10-29T09:45:55.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2022-10-31T06:49:12.000Z (about 2 years ago)
- Last Synced: 2024-11-11T22:49:47.258Z (2 days ago)
- Topics: laravel, laravel-framework, laravel-package, laravel-service, php, php-package
- Language: PHP
- Homepage: https://dorsone.github.io/laravel-service
- Size: 21.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Laravel artisan command for creating and linking services
With this library, you can generate Services and automatically connect them to Controllers### Installation ```Only Laravel 9```
```console
composer require dorsone/laravel-service-generator
```Create your first service!
```console
php artisan make:service TestService --controller=TestController
```