Open
Description
When using make:factory --all-fields
Foundry generate default values for all fields according to their type.
WDYT about adding optional()
method from Faker by default for those values ?
For example if i have an entity with a nullable field phone
currently the default generated is :
'phone' => self::faker()->text(),
My proposal would be to have :
'phone' => self::faker()->optional()->text(),
Activity