This commit is contained in:
2025-05-21 13:59:41 +05:00
parent 09df813425
commit bf33e14e43
2 changed files with 13 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
<?php
use App\Http\Controllers\ApiTesterController;
use App\Http\Controllers\Auth\LoginController;
use App\Http\Controllers\Auth\RegisterController;
use App\Http\Controllers\Auth\ResetPasswordController;
@@ -31,6 +32,8 @@ Route::middleware(['auth'])->group(function () {
Route::post('password-change', [PasswordChangeController::class, 'update'])->name('password-change.update');
});
Route::get('tester', [ApiTesterController::class, 'index']);
Route::get('online-payment-store', [OnlinePaymentController::class, 'store'])
->name('online-payment-store');