Looking to hire Laravel developers? Try LaraJobs

laravel-module-boilerplate maintained by dot-env-it

Description
A streamlined boilerplate generator for modular Laravel architectures.
Last update
2026/04/26 11:20 (v1.0.1)
License
Links
Downloads
0

Comments
comments powered by Disqus

Laravel Module Boilerplate

A high-performance modular architecture generator designed for Laravel. This package allows you to quickly scaffold entire modules (Controllers, Models, Services, etc.) within a modules/ directory.


🚀 Installation

This package is intended for local development only. Do not install it in production.

1. Require the Package

Install via Composer using the --dev flag:

composer require dot-env-it/laravel-module-boilerplate --dev

2. Publish Stubs (Optional)

If you wish to customize the templates used for generation, publish the stubs to your project root:

php artisan vendor:publish --tag=module-boilerplate-stubs

The stubs will be available in stubs/vendor/dot-env-it/.


🛠 Usage

Generate a Full Module

To scaffold a complete module structure:

php artisan module:make Blog

Custom JS Path

If you use a non-standard directory for your frontend assets:

php artisan module:make Blog --js-path=Assets/scripts

Available Sub-Commands

You can also generate individual components within a module:

  • php artisan module:controller {name} --module={module}
  • php artisan module:model {name} --module={module}
  • php artisan module:service {name} --module={module}
  • php artisan module:request {name} --module={module}
  • (And 14+ other specialized commands)

📂 Module Structure

Generated modules follow this clean architecture:

app/
├──Modules/
│  └── Blog/
│        ├── Actions/
│        ├── DataTables/
│        ├── Http/
│        │   ├── Controllers/
│        │   ├── Payloads/
│        │   ├── Requests/
│        │   └── Resources/
│        ├── Models/
│        ├── Queries/
│        └── Services/
└──resources/
   ├──custom-js-path/modules/blog
   └──views/modules/blog

It also creates permissions if spatie/laravel-permission package is installed.


🛡 Security & Environment

This package automatically disables its commands when APP_ENV is set to production. This ensures that your file system remain protected in live environments.

👥 Credits

📄 License

The MIT License (MIT). Please see License File for more information.