- Updated the migration logic to insert records into the 'visa_master_payment_orders' table. - Improved handling of sender and receiver data by decoding JSON fields and providing fallback values. - Added a test route in web.php to trigger the migration for debugging purposes.
15 lines
488 B
PHP
15 lines
488 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
use Database\Seeders\Migrators\VisaMasterPaymentOrdersMigrator;
|
|
|
|
Route::redirect('/', filament_path());
|
|
|
|
Route::get('test', function () {
|
|
return 'done';
|
|
});
|
|
// 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');
|
|
// });
|