This commit is contained in:
2026-06-11 12:26:32 +05:45
parent 7f6ae57c3a
commit 7bad51659b
5 changed files with 263 additions and 79 deletions
+1
View File
@@ -31,6 +31,7 @@ Route::middleware('auth')->group(function () {
Route::post('/verify-otp', [RegistrationController::class, 'verifyOtp'])->name('verify-otp');
Route::get('/{id}/json', [RegistrationController::class, 'getRegistrationJson'])->name('get-json');
Route::post('/record-shot', [RegistrationController::class, 'recordShot'])->name('record-shot');
Route::post('/correct-shot', [RegistrationController::class, 'correctShot'])->name('correct-shot');
Route::post('/record-shots', [RegistrationController::class, 'recordShots'])->name('record-shots');
Route::get('/{id}/history', [RegistrationController::class, 'history'])->name('history');
Route::post('/{id}/country', [RegistrationController::class, 'updateCountry'])->name('update-country');