41 lines
1.3 KiB
PHP
41 lines
1.3 KiB
PHP
<?php
|
|
|
|
return [
|
|
'default_valid_years' => 5,
|
|
|
|
// Map voucher tiers to Paddle price IDs (create matching prices in Paddle Billing).
|
|
'tiers' => [
|
|
[
|
|
'key' => 'gift-starter',
|
|
'label' => 'Geschenk Starter',
|
|
'amount' => 29.00,
|
|
'currency' => 'EUR',
|
|
'paddle_price_id' => env('PADDLE_GIFT_PRICE_STARTER', 'pri_01kbwccfe1mpwh7hh60eygemx6'),
|
|
],
|
|
[
|
|
'key' => 'gift-standard',
|
|
'label' => 'Geschenk Standard',
|
|
'amount' => 59.00,
|
|
'currency' => 'EUR',
|
|
'paddle_price_id' => env('PADDLE_GIFT_PRICE_STANDARD', 'pri_01kbwccfvzrf4z2f1r62vns7gh'),
|
|
],
|
|
[
|
|
'key' => 'gift-premium',
|
|
'label' => 'Geschenk Premium',
|
|
'amount' => 129.00,
|
|
'currency' => 'EUR',
|
|
'paddle_price_id' => env('PADDLE_GIFT_PRICE_PREMIUM', 'pri_01kbwccg8vjc5cwz0kftfvf9wm'),
|
|
],
|
|
[
|
|
'key' => 'gift-premium-plus',
|
|
'label' => 'Geschenk Premium Plus',
|
|
'amount' => 149.00,
|
|
'currency' => 'EUR',
|
|
'paddle_price_id' => env('PADDLE_GIFT_PRICE_PREMIUM_PLUS', 'pri_01kbwccgnjzwrjy5xg1yp981p6'),
|
|
],
|
|
],
|
|
|
|
// Package types a voucher coupon should apply to.
|
|
'package_types' => ['endcustomer'],
|
|
];
|