mirror of
https://gitlab.com/omair-personal/exchange.git
synced 2026-08-19 04:24:08 +00:00
19 lines
289 B
PHP
19 lines
289 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class SettingTaxRateSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
DB::table('setting_tax_rates')->insert([
|
|
'tax_rate' => '1.1',
|
|
]);
|
|
}
|
|
}
|