When using realtime facades in Laravel, VSCode doesn't seems to provide intellisense or autocompletion. Even when using popular plugins like PHP Intelliphense I can't get it to work. However, when I import the class normally it works just fine.
For example, this has no intellisense/autocompletion features:
use Facades\App\User;
User::auth();
But this does:
use App\User;
User::auth();
I feel like this has to be a common problem since Facades are a core concept in Laravel. Does anyone know a workaround or solution to this problem?