Abdur Rehman Alvi
Abdur Rehman Alvi

Reputation: 31

Hide command prompt in laravel desktop application

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

Upvotes: 0

Views: 392

Answers (1)

Abdur Rehman Alvi
Abdur Rehman Alvi

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

Related Questions