zanixdev / laravel-helpers
Opinionated package of Laravel helpers
Installs: 574
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/zanixdev/laravel-helpers
Requires
- php: ^8.0
- illuminate/console: ^7||^8||^9||^10
- illuminate/support: ^7||^8||^9||^10
README
The package provides few commands for faster software development.
Installation
You can install this package via Composer. Run the following command to require the package in your Laravel project:
composer require zanixdev/laravel-helpers
Usage
Making a Service
To create a new service, run the following command:
php artisan make:service YourService
This command will generate a new service class in the app/Services directory with the specified name.
Making an Enum
To create a new enum, run the following command:
php artisan make:enum YourEnum
This command will generate a new enum class in the app/Enums directory with the specified name.
License
This Laravel package is open-sourced software licensed under the MIT license.