Znalazłem rozwiązanie, w tym celu jest coś, co nazywa się $middlewarePriority
w App\Kernel
.
Dodanie tego pomoże mi rozwiązać problem.
/**
* Responsible for prioritizing the middleware
*
* @var array
*/
protected $middlewarePriority = [
\App\Http\Middleware\SwitchSchema::class,
];
Mam rozwiązanie z tego linku.
https://github.com/laravel/framework/issues/19565