BatchFactory.php 393 B

123456789101112131415
  1. <?php
  2. /** @var \Illuminate\Database\Eloquent\Factory $factory */
  3. use App\Batch;
  4. use Faker\Generator as Faker;
  5. $factory->define(Batch::class, function (Faker $faker) {
  6. return [
  7. 'code' => \Illuminate\Support\Str::random(8).md5(date('Ymd')),
  8. 'type' => "无",
  9. 'wms_created_at' => $faker->dateTime,
  10. "remark" => \Illuminate\Support\Str::random(20),
  11. ];
  12. });