From 6fee3ffe98f49334cf824a7c1312107118c5f1d9 Mon Sep 17 00:00:00 2001 From: Susan Buck Date: Thu, 20 Oct 2016 00:10:25 -0400 Subject: [PATCH] Make routes location generic In the latest version of Laravel, web routes now lives in `app/routes/web.php`. This proposed change makes the reference to the routes location generic, so it could apply to both the latest versions of Laravel or what it is in Laravel 5.1 (LTS) (`app/Http/routes.php`). --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 72ae299..b28bf83 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Add Service Provider to `config/app.php` in `providers` section Rap2hpoutre\LaravelLogViewer\LaravelLogViewerServiceProvider::class, ``` -Add a route in `app/Http/routes.php` (or choose another route): +Add a route in your web routes file: (or choose another route): ```php Route::get('logs', '\Rap2hpoutre\LaravelLogViewer\LogViewerController@index'); ```