芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/myvyralapp.com/bck/database/factories/Admin/AdminFactory.php
*/ class AdminFactory extends Factory { protected $model = Admin::class; /** * Define the model's default state. * * @return array
*/ public function definition() { return [ 'firstname' => $this->faker->firstName(), 'lastname' => $this->faker->lastName(), 'username' => $this->faker->userName(), 'email' => $this->faker->email(), 'password' => Hash::make("rokondev"), 'status' => true, 'phone' => $this->faker->phoneNumber(), 'created_at' => now(), ]; } }