Skip to content

Commit b2e396a

Browse files
author
Karel Mareš
authored
Update README.md
1 parent b401816 commit b2e396a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Breadcrumb for Laravel 5
22

3-
This package provide simple way to filter by IP addresses for your Laravel 5 application.
3+
This package provide simple way to filter user access by IP addresses for your Laravel 5 application.
44

55
## Install
66

@@ -20,13 +20,13 @@ Laravel 5.5+ automaticly register service provider and set Alias thanks to auto-
2020

2121
## Usage
2222

23-
Export filter for IpFilter
23+
Export filter config.
2424

2525
``` terminal
2626
php artisan vendor:publish --provider="Mares29\IpFilter\FilterIpServiceProvider"
2727
```
2828

29-
Use one **black list** or **white list**. For example, allow acces only from ip address *127.0.0.1*.
29+
Use one of **black list** or **white list** method. For example, allow acces only from ip address *127.0.0.1*.
3030

3131
``` php
3232
// White list - List of allowed IP addresses
@@ -38,7 +38,7 @@ Use one **black list** or **white list**. For example, allow acces only from ip
3838
'denied' => [],
3939
```
4040

41-
Add middleware for Yours all web routes.
41+
Add middleware for all Your web routes.
4242

4343
``` php
4444
protected function mapWebRoutes()
@@ -49,7 +49,7 @@ protected function mapWebRoutes()
4949
->group(base_path('routes/web.php'));
5050
}
5151
```
52-
or just for specific routes
52+
Or just for specific routes.
5353

5454
``` php
5555
Route::get('/', function () {

0 commit comments

Comments
 (0)