Пересмотрите свое решение полностью, легче отредактировать модель User и потом пользоваться примерно такой схемой
public function handle($request, Closure $next, $guard = null)
{
if (Auth::check()) {
$user = Auth::user();
if ($user->isBanned()) {
// User is banned
}
// User is not banned
}
}