Encontré la solución, para esto, hay algo llamado $middlewarePriority
en App\Kernel
.
Agregar esto me ayuda a resolver el problema.
/**
* Responsible for prioritizing the middleware
*
* @var array
*/
protected $middlewarePriority = [
\App\Http\Middleware\SwitchSchema::class,
];
Tengo la solución de este enlace.
https://github.com/laravel/framework/issues/19565