ok

Mini Shell

Direktori : /proc/thread-self/root/home2/selectio/www/limpiar.in.net/install/app/Http/Middleware/
Upload File :
Current File : //proc/thread-self/root/home2/selectio/www/limpiar.in.net/install/app/Http/Middleware/IsAdmin.php

<?php

namespace App\Http\Middleware;

use Closure;
use Auth;

class IsAdmin
{
    /**
     * Handle an incoming request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Closure  $next
     * @return mixed
     */
    public function handle($request, Closure $next)
    {
        if (Auth::check() && (Auth::user()->user_type == 'admin' || Auth::user()->user_type == 'staff')) {
            return $next($request);
        }
        else{
            abort(404);
        }
    }
}

Zerion Mini Shell 1.0