parfum/database/seeders/VoucherSeeder.php

108 lines
3.5 KiB
PHP

<?php
namespace Database\Seeders;
use App\Enums\VoucherType;
use App\Models\Outlet;
use App\Models\Voucher;
use Illuminate\Database\Seeder;
class VoucherSeeder extends Seeder
{
public function run(): void
{
$vouchers = [
[
'name' => 'Diskon 10%',
'code' => 'DISC10',
'type' => VoucherType::PERCENTAGE,
'discount_amount' => 10,
'min_purchase' => 50000,
'max_discount' => 20000,
'quota' => 100,
'limit_per_user' => 2,
'start_date' => now()->subDays(5),
'end_date' => now()->addMonth(),
],
[
'name' => 'Diskon 20%',
'code' => 'DISC20',
'type' => VoucherType::PERCENTAGE,
'discount_amount' => 20,
'min_purchase' => 100000,
'max_discount' => 50000,
'quota' => 50,
'limit_per_user' => 1,
'start_date' => now(),
'end_date' => now()->addDays(30),
],
[
'name' => 'Potongan Rp25K',
'code' => 'SAVE25K',
'type' => VoucherType::FIXED,
'discount_amount' => 25000,
'min_purchase' => 100000,
'max_discount' => null,
'quota' => 200,
'limit_per_user' => 3,
'start_date' => now(),
'end_date' => now()->addDays(15),
],
[
'name' => 'Potongan Rp50K',
'code' => 'SAVE50K',
'type' => VoucherType::FIXED,
'discount_amount' => 50000,
'min_purchase' => 200000,
'max_discount' => null,
'quota' => 80,
'limit_per_user' => 1,
'start_date' => now()->addDays(3),
'end_date' => now()->addDays(60),
],
[
'name' => 'Gratis Ongkir',
'code' => 'ONGKIR',
'type' => VoucherType::FIXED,
'discount_amount' => 15000,
'min_purchase' => 50000,
'max_discount' => 15000,
'quota' => 500,
'limit_per_user' => 5,
'start_date' => now(),
'end_date' => now()->addDays(90),
],
[
'name' => 'Flash Sale 30%',
'code' => 'FLASH30',
'type' => VoucherType::PERCENTAGE,
'discount_amount' => 30,
'min_purchase' => 75000,
'max_discount' => 40000,
'quota' => 30,
'limit_per_user' => 1,
'start_date' => now()->subDay(),
'end_date' => now()->addDay(),
],
[
'name' => 'Spesial Member',
'code' => 'MEMBER15',
'type' => VoucherType::PERCENTAGE,
'discount_amount' => 15,
'min_purchase' => 50000,
'max_discount' => 25000,
'quota' => null,
'limit_per_user' => null,
'start_date' => now(),
'end_date' => null,
],
];
foreach ($vouchers as $voucher) {
$newVoucher = Voucher::create($voucher);
$newVoucher->outlets()->attach(Outlet::inRandomOrder()->first()->id);
}
}
}