芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/myvyralapp.com/bck/database/factories/Admin/CurrencyFactory.php
*/ class CurrencyFactory extends Factory { protected $model = Currency::class; /** * Define the model's default state. * * @return array
*/ public function definition() { return [ 'country' => $this->faker->country, 'name' => "-", 'code' => $this->faker->currencyCode(), 'symbol' => "-", 'admin_id' => 1, 'type' => "FIAT", 'rate' => 1.00, ]; } }