When generating a factory for a Model with a password column it will generate the following column in the factory file:
'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;