This commit is contained in:
2024-10-01 19:07:23 +05:00
parent 9fecfccf22
commit 4dde4b357a
26 changed files with 26396 additions and 262 deletions

View File

@@ -3,6 +3,7 @@
use App\Http\Controllers\Auth\LoginController;
use App\Http\Controllers\Auth\RegisterController;
use App\Http\Controllers\Auth\ResetPasswordController;
use App\Http\Controllers\FetchCardHistoryController;
use App\Http\Controllers\LocaleController;
use App\Http\Controllers\OnlinePaymentController;
use Illuminate\Support\Facades\Route;
@@ -41,4 +42,6 @@ Route::get('online-payment-store-visa-master', [
OnlinePaymentController::class, 'visaMaster'
])->name('online-payment-store-visa-master');
Route::get('fetch-card-history', [FetchCardHistoryController::class, 'index']);
Route::redirect('/', config('nova.path'));