OwnerPriceDirectLogisticFactory.php 373 B

12345678910111213
  1. <?php
  2. /** @var \Illuminate\Database\Eloquent\Factory $factory */
  3. use App\OwnerPriceDirectLogistic;
  4. use Faker\Generator as Faker;
  5. $factory->define(OwnerPriceDirectLogistic::class, function (Faker $faker) {
  6. return [
  7. "name" => $faker->name.md5(\Illuminate\Support\Str::random(3)), //名称
  8. "base_km" => mt_rand(1,100), //起步公里数
  9. ];
  10. });