I need to make some fake records in laravel testing in a way that some of them have specific values.
for example I need to create 20 fake records of countries name and want to name the two records "USA" and "UK" and other values is not important.
If I use this code all records name will be same:
$country = Country::factory()->count(20)->create(['name'=> 'USA']);