mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim-api.git
synced 2026-08-19 04:24:01 +00:00
32 lines
714 B
PHP
32 lines
714 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use Carbon\Carbon;
|
|
use App\Warehousearr;
|
|
|
|
class WarehousearrSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
DB::table('warehousearrs')->insert([
|
|
|
|
'so_id' => '1',
|
|
'receive_on'=> Carbon::now()->format('Y-m-d H:i:s'),
|
|
'transport_company_name'=> 'TEScief',
|
|
'consignment_note_no'=> '1',
|
|
'warehouse_receive_note_no'=> '1',
|
|
'receiving_person'=> 'TEST',
|
|
'marking_number'=> '1',
|
|
'image'=> 'test.jpg',
|
|
'created_at' => Carbon::now()->format('Y-m-d H:i:s'),
|
|
'updated_at' => Carbon::now()->format('Y-m-d H:i:s'),
|
|
|
|
]);
|
|
}
|
|
}
|