mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-19 04:14:04 +00:00
37 lines
920 B
PHP
37 lines
920 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use App\SettingBeneficiary;
|
|
|
|
class SettingBeneficiarySeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
DB::table('setting_beneficiaries')->truncate();
|
|
DB::table('setting_beneficiaries')->insert([
|
|
'company_name' => 'CIEF2',
|
|
'bank_name' => 'Mayban222k',
|
|
'acc_no' => '5555555',
|
|
'bank_address' => 'Jalan putrajaya',
|
|
'swift' => 'ABC122223',
|
|
'cnap' => 'CED232224',
|
|
'bank_branch' => 'Putra'
|
|
]);
|
|
DB::table('setting_beneficiaries')->insert([
|
|
'company_name' => 'CIEF1',
|
|
'bank_name' => 'CIMB',
|
|
'acc_no' => '123456789',
|
|
'bank_address' => 'Jalan cyberjaya',
|
|
'swift' => 'AB3333',
|
|
'cnap' => 'CADSeed',
|
|
'bank_branch' => 'cyberjaya
|
|
'
|
|
]);
|
|
}
|
|
}
|