Enhance ListRecords pages with tab functionality and default sorting

- Added getTabs method to ListCardPinOrders, ListLoanOrders, and ListLoanOrderMobiles pages to display order statuses for system users.
- Implemented default sorting by 'created_at' in LoanOrdersTable and LoanOrderMobilesTable for improved data organization.
- Updated ManageCards page to ensure proper type declaration for getTitle method.
This commit is contained in:
Mekan1206
2025-12-21 05:21:53 +05:00
parent 5a53b90272
commit 5e37bd1a76
29 changed files with 111 additions and 28 deletions

View File

@@ -3,7 +3,6 @@
namespace Database\Seeders\Migrators;
use Illuminate\Support\Facades\DB;
use JsonMachine\JsonMachine;
use JsonMachine\Items;
class VisaMasterPaymentOrdersMigrator
@@ -21,7 +20,6 @@ class VisaMasterPaymentOrdersMigrator
continue;
}
$sender_datas = json_decode($item->sender_datas);
$payment_reciever = json_decode($item->payment_reciever);
@@ -63,4 +61,4 @@ class VisaMasterPaymentOrdersMigrator
]);
}
}
}
}