Hide command prompt in laravel desktop application

311 views Asked by At

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 enter image description here but I do not require to be shown it should run in the background. guide me for this thank you in advance

1

There are 1 answers

0
Abdur Rehman Alvi On

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"
},