贝克无法正确播种数据库

时间:2019-06-11 07:28:56

标签: laravel eloquent faker

我正在尝试用造假者播种我的数据库。除图像外,所有内容均正确填写。它们存在于我的存储文件夹中,但在数据库中写为0。我很困惑,我已经查看了此处提供的问题/答案,但没有找到解决方案。 任何帮助将不胜感激。

型号:

protected $fillable = [
   'title','description','image','price','category_id','user_id'
 ]; 

工厂:

'image' => $faker->image(storage_path('app/public/products'), 800, 800, null, false),

迁移:

$table->string('image')->nullable();;

1 个答案:

答案 0 :(得分:2)

尝试这个'image' => $faker->image(storage_path('app/public/products'), 800, 800, '', false)