mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-19 04:14:04 +00:00
21 lines
390 B
PHP
21 lines
390 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class SettingActiveBankSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
DB::table('setting_active_banks')->insert([
|
|
'x1_bank_id' => 'malaysiaacc01',
|
|
'x2_bank_id' => 'malaysiaacc02',
|
|
'beneficiary_id' => '123456789'
|
|
]);
|
|
}
|
|
}
|