This commit is contained in:
2025-05-26 21:55:54 +05:00
parent 3dc1496b45
commit 9dde39e851
3 changed files with 28 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
<?php
use App\Http\Controllers\ApiTesterController;
use App\Http\Controllers\Api\CardTransactionController;
use App\Http\Controllers\Auth\LoginController;
use App\Http\Controllers\Auth\RegisterController;
use App\Http\Controllers\Auth\ResetPasswordController;
@@ -30,6 +31,8 @@ Route::middleware(['auth', 'unVerified'])->group(function () {
Route::middleware(['auth'])->group(function () {
Route::get('password-change', [PasswordChangeController::class, 'index'])->name('password-change');
Route::post('password-change', [PasswordChangeController::class, 'update'])->name('password-change.update');
Route::get('card-transaction/{transaction}', [CardTransactionController::class, 'show']);
});
Route::get('tester', [ApiTesterController::class, 'index']);