I follow the material given in Easy Laravel 5 to get to know Laravel. Therefore, I created the application for the intended purpose, and when I visited localhost:8000 , I saw a welcome page.
Then I gave a command to change the name:
php artisan app:name todoparrot
What the system answered Application namespace set! . But now, when I restart localhost:8000 , I see nothing, and the terminal serving the application gives me a long list of errors:
PHP Fatal error: Uncaught exception 'ReflectionException' with message 'Class todoparrot\Console\Kernel does not exist' in /media/common/htdocs/todoparrot/vendor/laravel/framework/src/Illuminate/Container/Container.php:776 Stack trace:
Now I canβt even start artisan since I keep getting the same error. Any idea what might be broken due to this extremely simple change?
laravel laravel-5 composer-php
dotslash
source share