I have a Model called Address that utilizes several lookup tables named with _type (eg. Address_type, Region_type, etc.) Upon running php artisan test-factory-helper:generate, the package errors out with the message:
[Symfony\Component\Debug\Exception\FatalThrowableError]
Class 'App\Models\Region' not found
It appears to be expecting a Model that doesn't exist: Region to associate with Region_type.
I have a Model called Address that utilizes several lookup tables named with _type (eg. Address_type, Region_type, etc.) Upon running
php artisan test-factory-helper:generate
, the package errors out with the message:It appears to be expecting a Model that doesn't exist: Region to associate with Region_type.