当我试图在流明项目中运行php artisan route:cache时,出现以下错误,

[invalid argument exception]
There is not commend defined in the 'route' namespace.

我的路线文件是,
 $app->get('/', 'App\Http\Controllers\WebController@index');

有什么想法吗?

最佳答案

这个命令只存在于拉瓦维尔,而在内腔则不存在。不需要它,因为流明是优化的最佳性能。
键入php artisan查看流明中所有可能的命令。

09-25 21:33