laravel route:list filter by controller

问题描述 投票:0回答:0

在我的 Laravel 10 项目中,我有两个名称相同但名称空间不同的控制器。对于这些控制器,我想在我的 CLI 中列出所有路由,因此我想根据控制器名称在我的 CLI 中过滤我的路由。

您可以通过键入

route:list
找到
php artisan route:list --help
命令的过滤器标志,因为它将包含以下输出(为简洁起见缩短了输出):

Options:
      --method[=METHOD]            Filter the routes by method
      --name[=NAME]                Filter the routes by name
      --domain[=DOMAIN]            Filter the routes by domain
      --path[=PATH]                Only show routes matching the given path pattern
      etc...

如您所见,没有给出控制器名称的过滤器。如何仍然获得具有给定控制器名称的所有路由的列表?

php laravel routes command-line-interface
© www.soinside.com 2019 - 2024. All rights reserved.