Tôi đã tìm thấy giải pháp, Đối với điều này, có một cái gì đó được gọi là $middlewarePriority
trong App\Kernel
.
Thêm điều này giúp tôi giải quyết vấn đề.
/**
* Responsible for prioritizing the middleware
*
* @var array
*/
protected $middlewarePriority = [
\App\Http\Middleware\SwitchSchema::class,
];
Tôi có giải pháp từ liên kết này.
https://github.com/laravel/framework/issues/19565