mirror of
https://gitlab.com/uldvstar/exchange-2.0.git
synced 2026-08-19 12:34:24 +00:00
37 lines
783 B
PHP
37 lines
783 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class CompaniesTableDevelopmentSeeder extends Seeder
|
|
{
|
|
|
|
/**
|
|
* Auto generated seed file
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
|
|
|
|
DB::table('companies')->insert(array (
|
|
4 =>
|
|
array (
|
|
'id' => 5,
|
|
'name' => 'VT Nation Trading Snd Bhd',
|
|
'reference' => '9220VNB',
|
|
'type' => 1,
|
|
'business_type' => 3,
|
|
'status' => 0,
|
|
'deleted_at' => NULL,
|
|
'created_at' => '2021-03-09 07:50:26',
|
|
'updated_at' => '2021-03-09 07:50:26',
|
|
)
|
|
));
|
|
|
|
|
|
}
|
|
} |