52 lines
996 B
PHP
52 lines
996 B
PHP
<?php
|
|
|
|
namespace App\Settings;
|
|
|
|
use Spatie\LaravelSettings\Settings;
|
|
|
|
class MarketplaceSettings extends Settings
|
|
{
|
|
public bool $tiktok_shop_enabled;
|
|
|
|
public float $tiktok_shop_admin_fee;
|
|
|
|
public float $tiktok_shop_transaction_fee;
|
|
|
|
public float $tiktok_shop_payment_fee;
|
|
|
|
public float $tiktok_shop_affiliate_commission;
|
|
|
|
public float $tiktok_shop_shipping_subsidy;
|
|
|
|
public float $tiktok_shop_vat_rate;
|
|
|
|
public ?string $tiktok_shop_url;
|
|
|
|
public ?string $tiktok_shop_id;
|
|
|
|
public bool $shopee_enabled;
|
|
|
|
public float $shopee_commission_fee;
|
|
|
|
public float $shopee_transaction_fee;
|
|
|
|
public float $shopee_service_fee;
|
|
|
|
public float $shopee_payment_fee;
|
|
|
|
public float $shopee_affiliate_commission;
|
|
|
|
public float $shopee_shipping_subsidy;
|
|
|
|
public float $shopee_voucher_fee;
|
|
|
|
public ?string $shopee_shop_url;
|
|
|
|
public ?string $shopee_shop_id;
|
|
|
|
public static function group(): string
|
|
{
|
|
return 'marketplace';
|
|
}
|
|
}
|