eyewill / tucle-builder
Tucle Builder
Installs: 4 630
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 1
Requires
- gossi/php-code-generator: 0.4.*
- illuminate/console: ~5.2.0
- illuminate/database: ~5.2.0
- illuminate/translation: ~5.2.0
- symfony/translation: ~2.8.0|~3.0.0
README
This package for laravel 5.3, for 5.2 is here.
インストール (install)
$ composer require eyewill/tucle-builder:dev-master
... and append to config/app.php
'providers' => [ ... Eyewill\TucleBuilder\TucleBuilderServiceProvider::class, ... ],
使い方 (How to use)
モジュールを作成
$ php artisan make:module モジュール名
モジュールに対応するテーブルを予め作成しておく必要があります
テーブルの例
モジュール名 -> テーブル名 article -> articles top_article -> top_articles information -> information
引数
# モジュール名 この名前でモジュールを作成する $ php artisan make:module top_article
オプション
# --force 強制的に実行 $ php artisan make:module article --force # --only 指定された要素のみ実行 # 指定可能要素 routes,model,presenter,views,requests $ php artisan make:module article --only=views,presenter # --table テーブル名を指定 # 変則的なテーブル名の場合に使用する $ php artisan make:module article --table=system_article