This commit is contained in:
2024-11-27 12:53:52 +05:00
parent bd5a72117f
commit 8adb96549c
5 changed files with 238 additions and 2 deletions

View File

@@ -3,6 +3,7 @@
use App\Http\Controllers\AlertController;
use App\Http\Controllers\Api\FetchLoanHistoryController;
use App\Http\Controllers\FetchCardHistoryController;
use App\Http\Controllers\FetchLoanRemainingController;
use App\Http\Controllers\MetricsController;
use App\Http\Controllers\ProfileController;
use App\Http\Middleware\OnlySystemUser;
@@ -32,6 +33,9 @@ Route::middleware(['nova', Authenticate::class, Authorize::class, OnlySystemUser
// Fetch loan history...
Route::post('fetch-loan-history', [FetchLoanHistoryController::class, 'index']);
// Fetch loan remaining...
Route::get('fetch-loan-remaining', [FetchLoanRemainingController::class, 'index']);
});
// Auth...