onvardgmbh/laravel-filters is a Laravel package for filters for laravel >=5.2.
It currently has 0 GitHub stars and 232 downloads on Packagist (latest version 1.2.1).
Install it with composer require onvardgmbh/laravel-filters.
Discover more Laravel packages by onvardgmbh
or browse all Laravel packages to compare alternatives.
Last updated
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.