first commit

This commit is contained in:
2026-04-15 20:16:52 +08:00
commit 8f45044411
1172 changed files with 329978 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
*.sqlite
*.sqlite-journal
+32
View File
@@ -0,0 +1,32 @@
<?php
/** @var \Illuminate\Database\Eloquent\Factory $factory */
use App\Model;
use Faker\Generator as Faker;
use Illuminate\Support\Str;
$factory->define(\App\Models\Order::class, function (Faker $faker) {
return [
'order_sn' => strtoupper(Str::random(12)),
'goods_id' => rand(1, 3),
'coupon_id' => rand(1, 3),
'title' => $faker->words(3, true),
'type' => rand(1,2),
'goods_price' => $faker->randomFloat(2, 10, 100),
'buy_amount' => rand(1, 10),
'coupon_discount_price' => $faker->randomFloat(2, 0, 100),
'wholesale_discount_price' => $faker->randomFloat(2, 0, 100),
'total_price' => $faker->randomFloat(2, 10, 100),
'actual_price' => $faker->randomFloat(2, 10, 100),
'search_pwd' => $faker->password(6, 10),
'email' => $faker->email,
'info' => $faker->words(3, true),
'pay_id' => rand(1, 20),
'buy_ip' => $faker->ipv4,
'trade_no' => strtoupper(Str::random(12)),
'status' => rand(1, 5),
'created_at' => $faker->dateTimeBetween('-7 days', 'now', 'PRC'),
'updated_at' => $faker->dateTimeBetween('-7 days', 'now', 'PRC'),
];
});
+16
View File
@@ -0,0 +1,16 @@
<?php
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @return void
*/
public function run()
{
$this->call(OrderTableSeeder::class);
}
}
+16
View File
@@ -0,0 +1,16 @@
<?php
use Illuminate\Database\Seeder;
class OrderTableSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
factory(\App\Models\Order::class, 50)->create();
}
}
File diff suppressed because one or more lines are too long