da1shiq / lara-service-maker
Library to enable Laravel devs to create Service class
v1.0.2
2025-04-24 03:04 UTC
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 defaultServices
folder)--test
: Generate Test class (optional)