In Laravel 8 the factory helper function no longer exists. There is a legacy package to pull in if you have old factories to use.
However, new factories are called of the model, as such:
User::factory()->create();
In Laravel 8 the factory helper function no longer exists. There is a legacy package to pull in if you have old factories to use.
However, new factories are called of the model, as such:
User::factory()->create();
0 Comments