A simple package to create a make:repository, make:service command for Laravel 8+
dungnt/laravel-make-repository-service is a Laravel package for a simple package to create a make:repository, make:service command for laravel 8+.
It currently has 0 GitHub stars and 1 downloads on Packagist.
Install it with composer require dungnt/laravel-make-repository-service.
Discover more Laravel packages by dungnt
or browse all Laravel packages to compare alternatives.
Last updated
A package for addding php artisan make:repository, php artisan make:service command to Laravel 6+
Require the package with composer using the following command:
composer require dungnt/laravel-make-repository-service --dev
Or add the following to your composer.json's require-dev section and composer update
"require-dev": {
"dungnt/laravel-make-repository-service": "^2.*"
}
In your config/app.php add Dungnt\LaravelMakeRepositoryService\RepositoryServiceProvider::class to the end of the providers array:
'providers' => [
...
Dungnt\LaravelMakeRepositoryService\RepositoryServiceProvider::class,
],
Publish Configuration
php artisan vendor:publish --provider "Dungnt\LaravelMakeRepositoryService\RepositoryServiceProvider"
php artisan make:repository your-repository-name
php artisan make:service your-service-name
Example:
php artisan make:repository User
php artisan make:service User
or
php artisan make:repository Backend\User
php artisan make:service Backend\User