Package Data | |
---|---|
Maintainer Username: | onvardgmbh |
Maintainer Contact: | info@onvard.de (Onvard GmbH) |
Package Create Date: | 2016-02-19 |
Package Last Update: | 2016-02-23 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-19 03:01:21 |
Package Statistics | |
---|---|
Total Downloads: | 223 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 3 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Add the following to your config/app.php
.
return [
. . .
/*
|--------------------------------------------------------------------------
| Autoloaded Service Providers
|--------------------------------------------------------------------------
|
| The service providers listed here will be automatically loaded on the
| request to your application. Feel free to add your own services to
| this array to grant expanded functionality to your applications.
|
*/
'providers' => [
. . .
/*
* The FilterServiceProvider needs to be inserted BEFORE App\Providers\RouteServiceProvider::class,
*/
Onvard\Filter\FilterServiceProvider::class,
App\Providers\RouteServiceProvider::class,
],
. . .
];
Add the filter
Middleware to middlewareGroups
and routeMiddleware
in app/Http/Kernel.php
.
. . .
protected $middlewareGroups = [
'web' => [
\App\Http\Middleware\EncryptCookies::class,
\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
\Illuminate\Session\Middleware\StartSession::class,
\Illuminate\View\Middleware\ShareErrorsFromSession::class,
\App\Http\Middleware\VerifyCsrfToken::class,
],
'api' => [
'throttle:60,1',
],
'filter' => [
\Onvard\Filter\Middleware\ApplyFilters::class,
],
. . .
protected $routeMiddleware = [
'auth' => \App\Http\Middleware\Authenticate::class,
'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,
'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
'filter' => \Onvard\Filter\Middleware\ApplyFilters::class,
];
. . .
Execute:
php artisan vendor:publish --provider="Onvard\Filter\FilterServiceProvider" --tag=filters
If the Provider doesn't get recognized, you maybe need to run php artisan clear:config
and run it again.
This is an Example of 'How To Use' the Middleware.
The first Example shows the Usage of the minifyHTML
Filter for a Route::group
to minify the HTML Output after it is generated.
The second Example shows the Usage of the functionName
Filter for a single Route
before and after it is requested.
. . .
Route::group(['middleware' => ['web','filter'], 'filter' => [ 'after' => [ 'minifyHTML' ] ] ],function () {
Route::get( '/',
[
'middleware' => ['filter'],
'filter' => [
'before' => [
'functionName'
],
'after' => [
'functionName'
]
],
function () {
return view('welcome');
}
]
);
});
. . .
You can find Filters in app/Filters/Filter.php
and add what you need.
If a Filter doesn't get recognized, you maybe need to run php artisan clear-compiled
and php artisan optimize
.