mtech / module-helper
Utilities for M-Tech API Projects that using laravel module pattern
Installs: 1 088
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: 7.4.*
- laravel/framework: ^6.0|^7.0
- nwidart/laravel-modules: 8.2
README
Create Template for Migration, Model, Contract, and Repository in Modules with one command
Installation
composer require mtech/module-helper --dev
How to use
php artisan mtech:make-model {module} {table} {model} --meta
php artisan mtech:make-attachment {module} {table} {model}
Example:
-
Model:
php artisan mtech:make-model Voyage voyage_details VoyageDetail
-
Meta: Please note that to create metas, include the option
--meta
in the command:php artisan mtech:make-model Voyage voyage_types VoyageType --meta
- Attachment: Please note that third variable is the Model that this attachment belongs to. In this example, we want to create voyage attachment, so the third variable should be Voyage:
php artisan mtech:make-attachment Voyage voyage_attachments Voyage
Important Notes
You still need to bind contract and repository in the Config/config.php