Refactor VisaMasterPaymentOrder components and enhance seeding process

- Updated record title attribute in VisaMasterPaymentOrderResource to 'unique_id'.
- Improved schema layout in VisaMasterPaymentOrderForm and VisaMasterPaymentOrderInfolist for better user experience.
- Added 'unique_id' field to VisaMasterPaymentOrderInfolist with styling adjustments.
- Implemented BelongsToBranch interface in VisaMasterPaymentOrder model and added a boot method for loan order creation.
- Expanded FillJsonData seeder to include migration for VisaMasterPaymentOrders.
This commit is contained in:
Mekan1206
2025-12-21 02:58:15 +05:00
parent 4fc242bc7d
commit 2ec9b28a60
7 changed files with 85 additions and 13 deletions

View File

@@ -11,6 +11,7 @@ class FillJsonData extends Seeder
*/
public function run(): void
{
$this->seedVisaMasterPaymentOrders();
}
protected function seedUsers(): void
@@ -62,4 +63,9 @@ class FillJsonData extends Seeder
{
(new Migrators\CardPinOrdersMigrator)->migrate();
}
protected function seedVisaMasterPaymentOrders(): void
{
(new Migrators\VisaMasterPaymentOrdersMigrator)->migrate();
}
}