$factory->define(App\Article::class,function (Faker\Generator $faker){
return [
'title' => $faker->name,
'content' => $faker->text,
'published_at'=>\Carbon\Carbon::now(),
'intro'=>$faker->text,
'user_id'=>str_random(10)
];
});<br></br>
在tinker 指令下出现 InvalidArgumentException with message 'Trailing data' 错误,据查是 published_at 出现错误,请问时间字段怎么设置假数据呢?