このスクリーンキャスト: https://tutsplus.com/lesson/displaying-registered-routes/ Jeffrey Way は、彼が作成したコマンドを実演し、説明で github へのリンクを示しています。ただし、Laravel 4コアに組み込まれているという更新がありますが、検索しても役に立ちませんでした。
一般的な考え方は、すべてのルートをリストし、アクションをそれらにバインドすることです。
どんな助けでも大歓迎です。
このスクリーンキャスト: https://tutsplus.com/lesson/displaying-registered-routes/ Jeffrey Way は、彼が作成したコマンドを実演し、説明で github へのリンクを示しています。ただし、Laravel 4コアに組み込まれているという更新がありますが、検索しても役に立ちませんでした。
一般的な考え方は、すべてのルートをリストし、アクションをそれらにバインドすることです。
どんな助けでも大歓迎です。
コンソール コマンド:
php artisan routes (laravel 4)
php artisan route:list (laravel 5)
+--------+----------------------------------------------------+-----------------------+----------------------------------------------+--------------------------------------------------------------------+---------------+
| Domain | URI | Name | Action | Before Filters | After Filters |
+--------+----------------------------------------------------+-----------------------+----------------------------------------------+--------------------------------------------------------------------+---------------+
| | GET /admin/configuration | | ConfigurationController@index | auth, keyMaster:configuration | |
| | POST /admin/configuration | | ConfigurationController@update | auth, keyMaster:configuration | |
| | GET /admin/logs/errors | | LogsController@errors | auth, keyMaster:logs/errors | |
| | GET /admin/logs/errors/{name} | | LogsController@errors | auth, keyMaster:logs/errors | |
| | DELETE /admin/logs/errors | | LogsController@delete | auth, keyMaster:logs/errors | |
| | GET /admin/logs/events | | LogsController@events | auth, keyMaster:logs/events | |
| | GET /admin/logs/events/data | | LogsController@eventsData | auth, keyMaster:logs/events | |
等...
L4 ベータ版の古いバージョンをまだ使用している可能性があります。新しいコピーをダウンロードすると、実行時にリストに表示されますphp artisan
。