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 exist.
And type php artisan serve
C:\xampp\htdocs\blog>php artisan serve
Now type http://localhost:8000 in browser and your blog project will run.
Again open another command prompt and again go to your another laravel project bloganother
C:\xampp\htdocs\bloganother>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 get solved.
I know that solution ! How we run multiple project on one serve with difference port without php artisan serve commnad ?
ReplyDelete