| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <?php
- namespace Database\Seeders;
- use Illuminate\Database\Console\Seeds\WithoutModelEvents;
- use Illuminate\Database\Seeder;
- use \App\Models\Prize;
- class PrizeSeeder extends Seeder
- {
- /**
- * Run the database seeds.
- *
- * @return void
- */
- public function run()
- {
- Prize::truncate();
- Prize::insert([
- [
- 'activity_id' => '1',
- 'name' => '現金 16,800 元',
- 'provider' => '亞新',
- 'count' => 2,
- 'created_at' => now(),
- 'updated_at' => now(),
- ],
- [
- 'activity_id' => '1',
- 'name' => '現金 12,000 元',
- 'provider' => '亞新',
- 'count' => 1,
- 'created_at' => now(),
- 'updated_at' => now(),
- ],
- [
- 'activity_id' => '1',
- 'name' => '現金 10,000 元',
- 'provider' => '亞新',
- 'count' => 1,
- 'created_at' => now(),
- 'updated_at' => now(),
- ],
- [
- 'activity_id' => '1',
- 'name' => '大潤發禮券 10,000 元',
- 'provider' => '亞新',
- 'count' => 4,
- 'created_at' => now(),
- 'updated_at' => now(),
- ],
- [
- 'activity_id' => '1',
- 'name' => '現金 8,800 元',
- 'provider' => '亞新',
- 'count' => 5,
- 'created_at' => now(),
- 'updated_at' => now(),
- ],
- [
- 'activity_id' => '1',
- 'name' => '大潤發禮券 8,000 元',
- 'provider' => '亞新',
- 'count' => 6,
- 'created_at' => now(),
- 'updated_at' => now(),
- ],
- [
- 'activity_id' => '1',
- 'name' => '現金 6,600 元',
- 'provider' => '亞新',
- 'count' => 13,
- 'created_at' => now(),
- 'updated_at' => now(),
- ],
- [
- 'activity_id' => '1',
- 'name' => '大潤發禮券 6,000 元',
- 'provider' => '亞新',
- 'count' => 10,
- 'created_at' => now(),
- 'updated_at' => now(),
- ],
- [
- 'activity_id' => '1',
- 'name' => '大潤發禮券 3,000 元',
- 'provider' => '亞新',
- 'count' => 80,
- 'created_at' => now(),
- 'updated_at' => now(),
- ],
- [
- 'activity_id' => '1',
- 'name' => '大潤發禮券 2,000 元',
- 'provider' => '亞新',
- 'count' => 50,
- 'created_at' => now(),
- 'updated_at' => now(),
- ],
- [
- 'activity_id' => '1',
- 'name' => '福利即享券 2,000 元',
- 'provider' => '亞新',
- 'count' => 50,
- 'created_at' => now(),
- 'updated_at' => now(),
- ],
- ]);
- }
- }
|