Skip to content

Commit 6fee3ff

Browse files
authored
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`).
1 parent 0340784 commit 6fee3ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Add Service Provider to `config/app.php` in `providers` section
2727
Rap2hpoutre\LaravelLogViewer\LaravelLogViewerServiceProvider::class,
2828
```
2929

30-
Add a route in `app/Http/routes.php` (or choose another route):
30+
Add a route in your web routes file: (or choose another route):
3131
```php
3232
Route::get('logs', '\Rap2hpoutre\LaravelLogViewer\LogViewerController@index');
3333
```

0 commit comments

Comments
 (0)