debugging laravel artisan from PHPStorm with homestead

前端 未结 2 1876
迷失自我
迷失自我 2020-12-13 21:24

I setup Laravel Homestead. I then configured both homestead xdebug.ini and PHPStorm to make the debugging work.

Here is my xdebug.ini insid

2条回答
  •  离开以前
    2020-12-13 22:11

    Or, if that all is just too complicated or not working - you can trigger your artisan command via a url (route) using

    Artisan::call('whatever:command');
    

提交回复
热议问题