Reputation: 31
I have developed a laravel desktop application and it is working fine. When i run my laravel desktop application php artisan serve command automatically starts in the command prompt and it shows on the desktop like this but I do not require to be shown it should run in the background. guide me for this thank you in advance
Upvotes: 0
Views: 392
Reputation: 31
Hi thanks for everyone who tried their best to help me out i got my solution you just need to change your setting.json file for desktop application and shut down the console as default
"debugging": {
"show_console": false,
"subprocess_show_console": false,
"log_level": "DEBUG4",
"log_file": "debug.log"
},
Upvotes: 0