我正在使用Laravel 5.4和生成迁移的包迁移生成器。
所以我有了迁移,现在我需要使用 Artisan 自动生成视图。我在Symfony上试过,很简单,但我不能用 Laravel 来做。
这是一个名为2017_07_01_202030_create_personas_table.php的迁移文件示例,适用于人员。
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class CreatePersonasTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('personas', function(Blueprint $table)
{
$table->integer('id', true);
$table->string('nombre', 100);
$table->dateTime('fecha_de_nacimiento');
$table->softDeletes();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('personas');
}
}
我尝试了八个以上的包来解决我的问题:从表中生成模型、视图和控制器(在 Laravel 5.4 上),但它们不起作用。否则我将使用运行良好的 Yii 框架。