mirror of
https://gitlab.com/uldvstar/exchange-2.0.git
synced 2026-08-19 20:44:25 +00:00
56 lines
1.4 KiB
PHP
56 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class BanksTableDevelopmentSeeder extends Seeder
|
|
{
|
|
|
|
/**
|
|
* Auto generated seed file
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
|
|
|
|
\DB::table('banks')->insert(array (
|
|
0 =>
|
|
array (
|
|
'id' => 1,
|
|
'company_id' => 1,
|
|
'reference' => NULL,
|
|
'bank_name' => 'Maybank',
|
|
'holder_name' => 'CIEF Worldwide Snd Bhd',
|
|
'account_no' => '6349569837563465',
|
|
'type' => 1,
|
|
'default' => 0,
|
|
'status' => 2,
|
|
'country_id' => 1,
|
|
'deleted_at' => NULL,
|
|
'created_at' => '2021-03-09 07:49:31',
|
|
'updated_at' => '2021-03-09 07:49:31',
|
|
),
|
|
1 =>
|
|
array (
|
|
'id' => 2,
|
|
'company_id' => 5,
|
|
'reference' => NULL,
|
|
'bank_name' => 'Bank Islam',
|
|
'holder_name' => 'VT Nation Trading',
|
|
'account_no' => '93487659287365',
|
|
'type' => 1,
|
|
'default' => 1,
|
|
'status' => 2,
|
|
'country_id' => 1,
|
|
'deleted_at' => NULL,
|
|
'created_at' => '2021-03-09 07:50:52',
|
|
'updated_at' => '2021-03-09 08:07:57',
|
|
)
|
|
));
|
|
|
|
|
|
}
|
|
} |