laravelit / angular-gen
Angular generators for Artisan
0.0.1
2017-09-22 21:57 UTC
Requires
- illuminate/console: ^5.5
This package is not auto-updated.
Last update: 2024-11-10 05:45:45 UTC
README
Angular generators for Artisan. Originally created at laravel5-angular-material-starter.
Usage
artisan ng:page name #New page inside angular/app/pages/
artisan ng:dialog name #New custom dialog inside angular/dialogs/
artisan ng:component name #New component inside angular/app/components/
artisan ng:service name #New service inside angular/services/
artisan ng:filter name #New filter inside angular/filters/
artisan ng:config name #New config inside angular/config/
Installation
If you're using the starter project, then it's already pre-installed.
composer require Laravelit/angular-gen
//and then add the provider in config/app.php
Laravelit\Generators\LaravelServiceProvider::class,
php artisan vendor:publish
Documentation
View Angular Generators documentation
Contributors
Originally created at laravel5-angular-material-starter then moved to a separate package by @m33ch
Notes
- Do not append the word
service
, it will be automatically added for you.