Refactor VisaMasterPaymentOrdersMigrator to enhance data migration process

- 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.
This commit is contained in:
Mekan1206
2025-12-21 03:18:50 +05:00
parent 2ec9b28a60
commit 8e548126b2
2 changed files with 40 additions and 28 deletions

View File

@@ -1,11 +1,11 @@
<?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 () {