da1shiq/lara-service-maker

Library to enable Laravel devs to create Service class

v1.0.2 2025-04-24 03:04 UTC

This package is auto-updated.

Last update: 2025-05-24 03:31:29 UTC


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:

  1. --folder : what folder will the Service class will be saved (Leave it blank to save it to default Services folder)
  2. --test : Generate Test class (optional)