Here's how you can properly attach the ThrottleMiddleware with parameters
use GrahamCampbell\Throttle\Http\Middleware\ThrottleMiddleware;
Route::get('summary/{topicid}/{issueid}', [App\Http\Controllers\SummaryController::class, 'show']) ->middleware([ThrottleMiddleware::class . ':10,30']);