Laravel Base – A Laravel package that scaffolds a complete API module with one Artisan command #60627
Laravel Base – Generate a Complete Laravel API Module with a Single Artisan CommandHi Laravel community 👋 Over the last few weeks I've been working on an open-source package called Laravel Base to remove one of the most repetitive parts of starting a new Laravel project. Instead of creating every layer manually, you can generate an entire production-ready module with a single command: php artisan make:module ProductThe package generates:
The goal isn't to replace Laravel conventions—it's to automate the repetitive boilerplate while keeping the generated code clean, readable, and easy to customize. Some highlights:
Repository: https://github.com/MuhammedMSalama/LaravelBase Packagist: https://packagist.org/packages/muhammedsalama/laravel-base I'd really appreciate feedback from experienced Laravel developers. If you think something could be improved—or if there's a feature you'd like to see—I'd love to hear your thoughts. Thanks! |
Replies: 1 comment 1 reply
|
Would it make sense to configure which files one wants generated rather than on each command invocation? Otherwise 👌🏻 |
Would it make sense to configure which files one wants generated rather than on each command invocation? Otherwise 👌🏻