We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When generating a factory for a Model with a password column it will generate the following column in the factory file:
password
'password' => Hash::make('password'),
We need to add the import statement at the top or let the developer know that he hast to add it.
use Illuminate\Support\Facades\Hash;
The text was updated successfully, but these errors were encountered:
Agreed. I noticed this myself the other day. We'll need to loop through the definition and check for common things to import, i.e. Str and Hash.
Str
Hash
Sorry, something went wrong.
No branches or pull requests
When generating a factory for a Model with a
password
column it will generate the following column in the factory file:We need to add the import statement at the top or let the developer know that he hast to add it.
The text was updated successfully, but these errors were encountered: