This package adds a new php artisan make:service {name} {--N|noContract}
command. It will create a service file and its contract (interface) for saving time while working with Laravel Framework and benefit from the Service Pattern.
You can install the package via composer:
composer require nordcoders/laravel-service-maker --dev
After installation, the command php artisan make:service {name} {--N|noContract}
will be available.
For example, the command php artisan make:service createUser
will generate a service file called CreateUserService.php
located in app/Services/CreateUser
.
It will also generate an interface (contract) called CreateUserContract.php
located in app/Services/Contracts
.
Adding a --service
or -S
option is now available when creating a model.
For example, the command php artisan make:model Book --service
or php artisan make:model Book -S
will generate a model with service too.
The command php artisan make:model Book --all
or php artisan make:model Book -a
will now generate a model, migration, factory, seeder, policy, controller, form requests and service.
Adding a --noContract
or -N
option will prevent the commands from implementing any contract and will not create any contract file.
If you never need any contracts. Publish the config file and then turn the with_interface value to false in the config file.
You can publish the config file with:
php artisan vendor:publish --tag="service-maker-config"
This is the content of the published config file:
return [
'with_interface' => true,
];
The MIT License (MIT). Please see License File for more information.