How to run multiple Laravel projects at same time?

How to run multiple Laravel projects at same time?

July 26, 2021 | 1 min read

How to run multiple Laravel projects at same time?

Multiple Laravel Projects

First, run your first Laravel project blog as follows:

Open your command prompt and go to your drive where your Laravel project exists.

And type PHP artisan serve

project1>php artisan serve

Now type http://localhost:8000 in the browser and your blog project will run.

Again open another command prompt and again go to your another Laravel project blog another,

project2>php artisan serve --port=8080

Now go to your browser and type http://localhost:8080 in your browser your another project will also run.

Thank you for reading this article. Hope your problem gets solved.