Laravel – Intelephense cannot find a certain class in App/Helpers
I have created a class in AppHelpersIdTransformer theres just two functions there. I have registered it in aliases array in my app.php in configapp 'aliases' => Facade::defaultAliases()->merge([ // 'Example' => AppFacadesExample::class, 'IdTransformer' => AppHelpersIdTransformer::class, ])->toArray(), then i do, php artisan…