地址:https://github.com/JeffreyWay/Laravel-4-Generators php
很方便,能夠幫助你生成不少重複的代碼。 git
不過若是你的model是自定義表的話,會有問題。 github
修改 spa
FormDumperGenerator.php code
public function getTableInfo($model) orm
public function getTableInfo($model) { $table = Pluralizer::plural($model); return \DB::getDoctrineSchemaManager()->listTableDetails($table)->getColumns(); }
修改以下 get
public function getTableInfo($model) { $tclass = new $model(); $table=$tclass->getTable(); if (is_null($tclass->getTable())) $table = Pluralizer::plural($model); return \DB::getDoctrineSchemaManager()->listTableDetails($table)->getColumns(); }