mirror of
https://gitlab.com/omair-personal/exchange.git
synced 2026-08-19 04:24:08 +00:00
0cf92b9936
removed droptable due to database contraints issue fixed rename booking foreight key in po table issue added supplierstable seeder updated supplierreport frontend updated upload po frontend
22 lines
413 B
PHP
22 lines
413 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class SuppliersTableSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
DB::table('setting_suppliers')->insert([
|
|
'company_name' => 'WongKok PLT',
|
|
'gst_no' => 'GTS12232123',
|
|
'bank_name' => 'HSBC',
|
|
'acc_no' => '86774723848593'
|
|
]);
|
|
}
|
|
}
|