I want to create a bunch of fake data for my app for testing, I read this stackoverflow answer and it seems that factories are what people use for fake data.
I read through the Laravel docs and it seems that seeders have a built in artisan command to seed the Database, while factories don't. for factories I either have to:
- add
User::factory()->create();
somewhere in my codebase to persist fake data in the DB and later remove it - manually create an artisan command that runs
User::factory()->create();
under the hood
both seem to me like something the Laravel community won't settle for, so I am here asking what the solution is and if in my case I should switch to a seeder.
To fill the database with test data, seeding is used.
But to generate your test data you need factories that are related to your models.
To generate a new factory, use the make:factory Artisan command:
This command will place the new factory class in the database/factories directory of your application and specify the path to the model
Once you have defined your factories, you can use the static factory method provided to your models by the
Illuminate\Database\Eloquent\Factories\HasFactory
trait to create a factory instance for that model.The factory method of the
HasFactory
trait will use conventions to determine the appropriate factory for the model. Specifically, the method will look for a factory in theDatabase\Factories
namespace whose class name matches the model name and has the Factory suffix.Seeder + Factory