Files
WrenchBoradWeb/www-api/app/Models/WrenchWalletModel.php
T
2024-10-27 16:24:42 -04:00

35 lines
919 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class WrenchWalletModel extends Model
{
public function kidsExtraWallet(){
return [
"amount" => 0,
"id" => 1,
"code" => "USD",
"description" => "Add Virtual Debit Card",
"symbol" => "$",
"action_type" => "AC_AD_VIRTUAL_CARD",
"lorder" => 0,
"country" => "",
"processor" => 9010,
"current_balance" => 0,
"transfer_limit" => 0,
"wallet_uid" => "",
"escrow" => 0,
"status" => 1,
"show_balance" => false,
"rt_action_text" => "Add Card",
"banner" => 'https://www.wrenchboard.com/assets/images/apps/wallet/wallet-card.jpg',
"icon" => 'https://www.wrenchboard.com/assets/images/apps/wallet/icon/cards.png'
];
}
}