Laravel Boiler Plate to start development with ease. This package will help you to start development with some extensions of
Run the below command in the Laravel root folder
composer require bensondevs/laravel-boiler-plate
This feature will create a service class in the folder of app/Services
php artisan make:service SomeModuleService
This feature will create a repository class in the folder of app/Repositories
php artisan make:repository MyModelNameRepository
This feature will create an enum class in the folder of app/Enums
php artisan make:enum MyChoicesEnum
This feature will create a contract class in the folder of app/Contracts
php artisan make:contract YourContract
This feature will create a helper file and automatically register it to the composer.json
to enable the developers to use it immediately without sweating
php artisan make:helper SomeAspectHelper
To see the helpers created please check in src/Helpers