From 2f2b58a8d9060de75d8492462aaa962e4c6b40e0 Mon Sep 17 00:00:00 2001 From: Nurmuhammet Allanov Date: Fri, 18 Oct 2024 19:31:53 +0500 Subject: [PATCH] wip --- routes/api.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/api.php b/routes/api.php index 8739c77..14b7e06 100644 --- a/routes/api.php +++ b/routes/api.php @@ -26,7 +26,7 @@ use Illuminate\Support\Facades\Route; Route::post('fetch-card-history', [FetchCardHistoryController::class, 'index']); // Fetch loan history... -Route::get('fetch-loan-history', [FetchLoanHistoryController::class, 'index']); +Route::post('fetch-loan-history', [FetchLoanHistoryController::class, 'index']); // Auth... Route::post('auth/register', [ApiAuthController::class, 'register']);