### Feature Description When creating a Eloquent Model with a Factory, the output is like: ```php class Customer extends Model { use HasFactory; } ``` Currently, Laravel appends the Factory generics to the docblock, like (see https://github.com/laravel/framework/pull/52855): https://github.com/laravel/laravel/blob/657070ea8a95ec269d0ed4c801cead04976a871a/app/Models/User.php#L12-L13 Same goes for the factories: https://github.com/laravel/laravel/blob/657070ea8a95ec269d0ed4c801cead04976a871a/database/factories/UserFactory.php#L9-L12 Can we also apply those to the generated files?