Laravel 5.5 Create Custom Middleware with an example
In this post we will give you information about Laravel 5.5 Create Custom Middleware with an example. Hear we will give you detail about Laravel 5.5 Create Custom Middleware with an exampleAnd how to use it also give you demo for it if it is necessary.
In this Laravel 5 tutorial, I will let you know how to create custom middleware to filter user based on their user type.
This is the basic requirement of any web application to filter HTTP request.
There is a default middleware “auth” to authenticate users in Laravel application.
You can create multiple middleware that can be used on different routes using group feature of route.
In this example, I will create a custom middleware to check if a user is blocked by admin then he can not access the restricted routes.
Step 1: Create Custom Validation
In this first step, I will create a middleware to check user is blocked or not.
Run below command to create middleware :
php artisan make:middleware CheckBlockStatus
Once above command have succcessfully executed then I will get a file in the middleware directory, In which I need to write my own custom logic to check wheater user is blocked or not.
app/Http/Middleware/CheckBlockStatus.php
<?php namespace AppHttpMiddleware; use Closure; classCheckBlockStatus { /** * Handle an incoming request. * * @param IlluminateHttpRequest $request * @param Closure $next * @return mixed */ publicfunctionhandle($request, Closure $next) { if (auth()->user()->isBlocked==) { return$next($request); } return redirect('login')->with('error','Your account has been suspended'); } }
Now I will have to register this middleware as routeMiddleware in app/Http/Kernel.php
app/Http/Kernel.php
<?php namespace AppHttp; use IlluminateFoundationHttpKernel as HttpKernel; classKernelextends HttpKernel { .... /** * The application's route middleware. * * These middleware may be assigned to groups or used individually. * * @var array */ protected$routeMiddleware= [ .... 'isBlock'=> AppHttpMiddlewareCheckBlockStatus::class, ]; }
Step 2: Add Route
Now I will call this middleware in routes to restrict logged user to access that routes if he/she is blocked by admin.
Route::group(array('middleware' => ['auth', 'isBlock']), function () { Route::get('dashboard',function(){ return "Welcome to onlinecode"; }); });
Now you can access dashboard when your account is not suspended by admin.
Laravel 5.4 – Simple and easy solution to create admin middleware to authenticate user type
Hope this code and post will helped you for implement Laravel 5.5 Create Custom Middleware with an example. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs