When generating a factory for a Model with a `password` column it will generate the following column in the factory file: ```php '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. ```php use Illuminate\Support\Facades\Hash; ```