php 我刚启动Laravel,在创建控制器时,出现了以下问题[关闭]

q7solyqu  于 2023-10-15  发布在  PHP
关注(0)|答案(1)|浏览(147)

**已关闭。**此问题需要debugging details。它目前不接受回答。

编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答这个问题。
8天前关闭
Improve this question

在项目文件中找不到用法。-问题

v8wbuo2f

v8wbuo2f1#

您可以尝试像这样访问控制器,而不是将路由作为字符串指向控制器。

use App\Http\Controllers\RomanController;
...
Route::get('/roman_age', [RomanController::class, 'age']);

相关问题