country + status added and other changes

This commit is contained in:
2026-06-10 18:02:17 +05:45
parent 5a085148b4
commit a551ca538e
16 changed files with 1386 additions and 293 deletions
+3 -1
View File
@@ -32,7 +32,9 @@ Route::middleware('auth')->group(function () {
Route::get('/{id}/json', [RegistrationController::class, 'getRegistrationJson'])->name('get-json');
Route::post('/record-shot', [RegistrationController::class, 'recordShot'])->name('record-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');
Route::post('/{id}/status', [RegistrationController::class, 'updateStatus'])->name('update-status');
});
Route::resource('comments', CommentController::class)->only(['index', 'store'])->names('comments');