enter image description hereartisan is not starting my dev environment. After entering the "php artisan serve" command,nothing is happening,only seeing my cmd cursor blinking for a long time,without any response.
CodePudding user response:
Run command:
composer update
This will update and export directories and files and then run command:
php artisan serve
if php artisan serve
not work try this:
php -S localhost:8000 -t public/
source: https://www.tutsmake.com/laravel-command-php-artisan-serve-not-working-properly/
CodePudding user response:
composer update
you can try again by doing it.
veya
php -S localhost:8000 -t public
komutunu deneyebilirsiniz.