-
Notifications
You must be signed in to change notification settings - Fork 1
Extra information
Generate general IDE helper files for improved code autocompletion and navigation by running:
php artisan ide-helper:generateGenerate IDE model helper files without writing to model files using:
#use any one of this two commands
php artisan ide-helper:models -N
php artisan ide-helper:models --nowriteThis project provides additional Artisan commands to simplify your workflow and enhance productivity.
php artisan csfixer:runThis command ensures that your code adheres to the predefined coding standards, making your codebase clean and readable.
Creating services for your application is made effortless. Use the following command to generate a service:
php artisan make:service subfolder/ServiceNameReplace subfolder and ServiceName with the actual values you need. You can also create a service without a subfolder:
php artisan make:service TestServiceThe newly created service will be located at app/Http/Services/TestService.php, ready to handle your application's business logic.
Generate all the necessary boilerplate files for a specific entity (such as model, controller, routes, resource, request, service, etc.) using the following command:
php artisan make:crud TestThis command will create all the required boilerplate files for the Test entity.
Leverage these Artisan commands to streamline your development process and maintain a well-structured codebase.
Copyright 2024, @AHS12 All Right Reserved