mirror of
https://gitlab.com/uldvstar/exchange-2.0.git
synced 2026-08-19 04:24:16 +00:00
c3f153fe4b
Update Booking Logic Class Delete Booking Logic Class
31 lines
705 B
PHP
31 lines
705 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Str;
|
|
|
|
class CompanyBanksTableSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
DB::table('company_banks')->insert([
|
|
[
|
|
'id' => 1,
|
|
'country_id' => 1,
|
|
'bank_name' => '12345678',
|
|
'holder_name' => '12345678',
|
|
'account_no' => '12345678',
|
|
'type' => 1,
|
|
'default' => 1,
|
|
'status' => 1,
|
|
'created_at' => date('Y-m-d H:i:s'),
|
|
'updated_at' => date('Y-m-d H:i:s')
|
|
]
|
|
]);
|
|
}
|
|
}
|