Skip to content
Advertisement

Can i run multiple command with artisan serve laravel?

Is it possible to run some other arrtisan command when we run php artisan serve . at the same time ? Is there any way to do that?

Advertisement

Answer

You can run multiple commands separated by a semi-colon.

For example:

php artisan view:clear; php artisan route:clear; php artisan cache:clear; php artisan config:clear 

Would that help?

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement