mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim-api.git
synced 2026-08-19 04:24:01 +00:00
64 lines
1.5 KiB
PHP
64 lines
1.5 KiB
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use App\Soitems;
|
|
use Carbon\Carbon;
|
|
|
|
class SoitemSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
|
|
DB::table('soitems')->insert([
|
|
|
|
([
|
|
|
|
'so_id' => '9999',
|
|
'status' => '0',
|
|
'order_id' => '1',
|
|
'brand_no' => '1',
|
|
'model_no' => '1',
|
|
'item_code' => '1',
|
|
'quantity_of_item' => '1',
|
|
'uom' => 'SEED',
|
|
'quantity_of_carton' => '1',
|
|
'packaging_type' => '1',
|
|
'packaging_height' => '1',
|
|
'packaging_width' => '1',
|
|
'packaging_depth' => '1',
|
|
'packaging_gross' => '1',
|
|
'packaging_nett' => '1',
|
|
'created_at' => Carbon::now()->format('Y-m-d H:i:s'),
|
|
'updated_at' => Carbon::now()->format('Y-m-d H:i:s'),
|
|
|
|
]),
|
|
([
|
|
|
|
'so_id' => '9999',
|
|
'status' => '0',
|
|
'order_id' => '1',
|
|
'brand_no' => '1',
|
|
'model_no' => '1',
|
|
'item_code' => '1',
|
|
'quantity_of_item' => '1',
|
|
'uom' => 'SEED',
|
|
'quantity_of_carton' => '1',
|
|
'packaging_type' => '1',
|
|
'packaging_height' => '1',
|
|
'packaging_width' => '1',
|
|
'packaging_depth' => '1',
|
|
'packaging_gross' => '1',
|
|
'packaging_nett' => '1',
|
|
'created_at' => Carbon::now()->format('Y-m-d H:i:s'),
|
|
'updated_at' => Carbon::now()->format('Y-m-d H:i:s'),
|
|
]),
|
|
|
|
]);
|
|
}
|
|
}
|