https://github.com/unisharp/laravel-unifly
Laravel code generator
https://github.com/unisharp/laravel-unifly
Last synced: about 1 year ago
JSON representation
Laravel code generator
- Host: GitHub
- URL: https://github.com/unisharp/laravel-unifly
- Owner: UniSharp
- License: mit
- Created: 2015-11-24T07:45:00.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-08-04T09:19:36.000Z (almost 9 years ago)
- Last Synced: 2025-04-29T16:48:53.312Z (about 1 year ago)
- Language: PHP
- Homepage:
- Size: 78.1 KB
- Stars: 3
- Watchers: 6
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
## Laravel Unifly
### Introduction
It contain artisan make:entity command , it will make unisharp work on the fly
### Install Data Carrier
composer.json:
"require" : {
"unisharp/laravel-unifly" : "dev-master"
},
"repositories": {
"type": "git",
"url": "git@bitbucket.org:unisharp/laravel-unifly.git"
}
save it and then
composer update unisharp/laravel-unifly
### Set ServiceProvider and Set Facade
#### in config/app.php:
* ServiceProfider
Unisharp\Unifly\UniflyServiceProvider::class,
### Usage
* main command
php artisan make:entity XXX
it will generate XXX entity and other views, repository to work with this entity
* with translatable
php artisan make:entity XXX --translatable