如图,菜鸟求解答;困扰了一下午了;为什么会报错!
ModelFactory.php 中代码如下:
<?php
$factory->define(App\Models\Notice::class, function (Faker\Generator $faker) {
return [
'title' => $faker->sentences,
'content' => $faker->paragraph,
];
});
我的model是在app\\Models目录下的。
我是用 php artisan make model:Models/Notice 生成的
模型 Notice.php 之下了如下代码
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Notice extends Model
{
protected $table = 'notice';
protected $fillable = ['title','content'];
}
migration 如下:
<?php
Schema::create('notice', function (Blueprint $table) {
$table->increments('id');
$table->string('title');
$table->text('content');
$table->integer('user_id')->default('0');
$table->timestamps();
});