Laravel, Call to undefined function Database\Seeders\factory()

后端 未结 5 1515
说谎
说谎 2021-01-05 07:46

I get the title error when I run command:

php artisan db:seed

My screenshot:

I have no idea where this problem comes from. I was sear

5条回答
  •  春和景丽
    2021-01-05 08:24

    ArticlesTableSeeder.php

    times(30)->create();
        }
    }
    

    ArticleFactory.php

     $this->faker->text(50),
                'body'  => $this->faker->text(200)
            ];
        }
    }
    

提交回复
热议问题