jcalosor/servicest

Laravel 5.6 Services class generator

0.1.7 2018-08-27 05:25 UTC

This package is auto-updated.

Last update: 2024-04-29 03:47:16 UTC


README

Laravel 5.6 Services class generator

build:passed Latest Stable Version Total Downloads License

Installation

Step 1: Execute composer

composer require jcalosor/servicest

(Optional): For Laravel versions < 5.5, while in the laravel directory, edit the config/app.php file

Add the following code.

JCalosor\Servicest\ServicestServiceProvider::class

Step 2: Publish the configuration file

Note: Make sure you are inside the laravel directory first, then run.

php artisan vendor:publish --tag=servicest-config

Step 3: Verify the install

Note: Again in the laravel directory, run.

php artisan

A new command in the make section should already appear like so:

make:service         Create a new service library class

Installation Done!