Skip to content

Instantly share code, notes, and snippets.

@connor11528
Created March 1, 2018 13:39
Show Gist options
  • Save connor11528/42f40d1b499c94d43a41522c6229ad64 to your computer and use it in GitHub Desktop.
Save connor11528/42f40d1b499c94d43a41522c6229ad64 to your computer and use it in GitHub Desktop.
Middleware to check if user is an admin in Laravel 5
<?php
namespace App\Http\Middleware;
use Closure;
class IsAdmin
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
if(auth()->user()->isAdmin()) {
return $next($request);
}
return redirect('home');
}
}
@himwkd
Copy link

himwkd commented Mar 25, 2019

How can we do it for not admin ?

@Tomek0029
Copy link

if(!auth()->user()->isAdmin())

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment