मुझे इसका समाधान मिल गया है, इसके लिए $middlewarePriority
नाम की कोई चीज़ है App\Kernel
. में ।
इसे जोड़ने से मुझे समस्या का समाधान करने में मदद मिलती है।
/**
* Responsible for prioritizing the middleware
*
* @var array
*/
protected $middlewarePriority = [
\App\Http\Middleware\SwitchSchema::class,
];
मुझे इस लिंक से समाधान मिल गया है।
https://github.com/laravel/framework/issues/19565