-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding Artisan Commands for Generating Controllers, Middlewares, and Models #27
Conversation
…Models I have implemented the following Artisan commands to simplify the development process: - make:controller: generates a new controller with the specified name. - make:middleware: generates a new middleware with the specified name. - make:model: generates a new model with the specified name.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey, great job. Thanks for your PR to perfect Goravel, just left some nitpicks.
This commit resolves the comments made on the GitHub pull request. The changes made address the feedback received and improve the overall quality of the code.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perfect, with your contribution, Goravel becomes better.
Hey @merouanekhalili We created a private channel in Discord for contributors. You can click the link and DM me (@bowen) to join it if you are interested. Here you can:
|
I have implemented the following Artisan commands to simplify the development process: