group(function () { Route::post('/like/{deal}', [InteractionController::class, 'togglesState']) ->defaults('type', InteractionType::Like) ->middleware('throttle:30,1') ->name('like'); Route::post('/favorite/{deal}', [InteractionController::class, 'togglesState']) ->defaults('type', InteractionType::Favorite) ->middleware('throttle:30,1') ->name('favorite'); Route::post('/report/{deal}', [ReportController::class, 'store'])->name('report.store'); });