I am developing a VueJs application in Laravel. In my local environment I have to use php artisan serve
command to serve my project. In server I am using php artisan serve --host 0.0.0.0 --port 8000
command to run my project. I have configured apache web server.
Here my question is How should I run the project on the server without using php artisan serve
command?. Thanks in advance.