I'm following the Laracast for PHPStorm and setting up xdebug. When I run xdebug on a controller in my laravel project, it prompts me to install a chrome extension. If I install said chrome extension, I just get a browser window stating Fatal Error: Class 'BaseController' not found . Jeff doesn't mention this extension, nor does anyone in the comments. As a result, I'm not seeing anything in the debugger except "Connected to JetBrains Chrome Extension". What gives? I followed the tutorial precisely.
0
votes
1 Answers
2
votes
I follow this jetbrains guide plus proxying tunneling the 9000 port.
For me Proxying / Tunneling the Debugger Connection do the trick.
I need to bring port 9000 to my local machine like this:
ssh -R 9000:localhost:9000 [email protected] //or wathever ip of you homestead
instead of run homestead sh for login to my homestead machine.
I hope works for you.