Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下を使用する場合:
Artisan::call('routes')
0 を返します。
php artisan routesCLI から実行したときに表示されるのと同じルートを解析したいと考えていました。
php artisan routes
これを試して成功した人はいますか?
職人は必要ありません-ルートクラス自体を使用するだけです:
<table> <tr> <th>Routes</th> </tr> @foreach(Route::getRoutes() as $name => $route) <tr> <td>{{ $name }}</td> </tr> @endforeach </table>