da1shiq / lara-service-maker
Library to enable Laravel devs to create Service class
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
pkg:composer/da1shiq/lara-service-maker
Requires
- php: ^8.1
- illuminate/support: ^9|^10|^11|^12.0
README
Simple package that enables Laravel devs (or non-Laravel devs) to create Service class without manually creating it from scratch.
Installation
Install lara-service-maker by running single command :
composer require da1shiq/lara-service-maker
and that's it!
Usage/Examples
Initialize Service class creation by typing this command:
php artisan make:service <Your Service Name>
Optional tags:
--folder: what folder will the Service class will be saved (Leave it blank to save it to defaultServicesfolder)--test: Generate Test class (optional)