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

Popular posts from this blog

ios - RestKit 0.20 — CoreData: error: Failed to call designated initializer on NSManagedObject class (again) -

java - Digest auth with Spring Security using javaconfig -

laravel - PDOException in Connector.php line 55: SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES) -