dealhub/routes/api/interactions.php
kusowl 193913dfad fix: controller namespaces
- change 'auth' to Auth
- fix use statements to correctly
2026-01-22 17:38:50 +05:30

8 lines
195 B
PHP

<?php
use App\Http\Controllers\Interaction\InteractionController;
Route::post('/view/{deal}', [InteractionController::class, 'view'])
->middleware('throttle:30,1')
->name('view-deal');