Hi
I've looked through the documentation and other issues raised here and I can't find any working way to pass parameters to middleware
I'm looking to achieve something like this
Router::group( ['middleware' => ['limiter,1,2'] ], function () {});
or this
Router::post('/path-here', [Controller::class, 'method'])
->addMiddleware(Limiter::class, 'paramter1', 'parameter2');
// or
Router::post('/path-here', [Controller::class, 'method'])
->addMiddleware(Limiter::class, ['paramter1', 'parameter2']);
I'm available to assist on this if needed. Thanks and Happy New Year
Hi
I've looked through the documentation and other issues raised here and I can't find any working way to pass parameters to middleware
I'm looking to achieve something like this
or this
I'm available to assist on this if needed. Thanks and Happy New Year