mirror of
https://gitlab.com/omair-personal/exchange.git
synced 2026-08-19 12:34:13 +00:00
24 lines
422 B
PHP
24 lines
422 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class RateTableSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
DB::table('rates')->insert([
|
|
'x1_cash' => 1.2,
|
|
'x1_cheque' => 1.2,
|
|
'x1_ba' => 1.2,
|
|
'x2_cash' => 1.2,
|
|
'x2_cheque' => 1.2,
|
|
'x2_ba' => 1.2,
|
|
]);
|
|
}
|
|
}
|