Require this package with composer. It is recommended to only require the package for development.
composer require web-id/persil --devLaravel uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.
List of stubs : here
php artisan vendor:publish --tag=custom-laravel-stubsEmpty repository
php artisan make:repository UserRepositoryRepository with wanted methods
php artisan make:repository UserRepository --update --deleteRepository with all, store, update, delete methods
php artisan make:repository UserRepository --resourceRepository using cache system
php artisan make:repository UserRepository --update --delete --cache
php artisan make:repository UserRepository --resource --cacheList of available methods (options)
Create service file on app/Services (template)
php artisan make:service PaymentServiceCreate service file with testing service file, interface and provider
php artisan make:service PaymentService --providerThe MIT License (MIT). Please see License File for more information.