php - Laravel - After I ran composer update CLI artisan issue shows up -
i have made composer update on laravel project latest version, after no cli command working
g:\xamp\htdocs\laraintro>php artisan make:controller actioncontroller ←[37;41m ←[39;49m ←[37;41m [unexpectedvalueexception] ←[39;49m ←[37;41m invalid route action: [app\http\controllers\] ←[39;49m ←[37;41m ←[39;49m
i tried solution didn't work me
@amarnasan correct.
the impact of incorrectly defined route has on how laravel booted. if have invalid route, mess rest of code.
so, need double check routes correctly defined. means need check if controllers exist , if methods each route exists. take look @ docs check how routes should defined.
if routes correctly execute following command:
php artisan route:clear
Comments
Post a Comment