%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/graphicd/public_html/vebto/common/Core/Middleware/
Upload File :
Create Path :
Current File : /home/graphicd/public_html/vebto/common/Core/Middleware/IsAdmin.php

<?php

namespace Common\Core\Middleware;

use Auth;
use Closure;
use Illuminate\Auth\Access\AuthorizationException;
use Illuminate\Auth\AuthenticationException;
use Illuminate\Http\Request;

class IsAdmin
{
    public function handle(Request $request, Closure $next)
    {
        if ( ! Auth::check()) {
            throw new AuthenticationException();
        }

        if ( ! Auth::user()->hasPermission('admin')) {
            throw new AuthorizationException();
        }

        return $next($request);
    }
}

Zerion Mini Shell 1.0