Laravel-4-Generators

地址: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();
    }
本站公众号
   欢迎关注本站公众号,获取更多信息