如果我使用以下内容:
Artisan::call('routes')
返回0.
我希望解析从CLI运行php artisan routes
时出现的相同路由。
有没有人试过这个成功?
答案 0 :(得分:4)
你不需要工匠 - 只需使用路线类本身:
<table>
<tr>
<th>Routes</th>
</tr>
@foreach(Route::getRoutes() as $name => $route)
<tr>
<td>{{ $name }}</td>
</tr>
@endforeach
</table>