File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 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
2626php 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
4444protected 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
5555Route::get('/', function () {
You can’t perform that action at this time.
0 commit comments