T
Size: a a a
T
ДК
S
DB
AP
S
S
AP
AP
S
'discounts' => [Ошибка: Invalid array
'coupon' => 'nXz2yaDl'
]
auth()->user()->tab('Trial Fee', $plan->setup_fee, [же массив передаю, что может быть не так?
'discounts' => [
'coupon' => 'nXz2yaDl'
]
]);
Правильно
S
AB
S
auth()->user()->invoiceFor('Trial Fee', $plan->setup_fee, [
'discounts' => [
'coupon' => 'nXz2yaDl'
]
]);
AB
S
S
S
AB
S
auth()->user()->invoiceFor('Trial Fee', $plan->setup_fee, [
'discountable' => true,
'discounts' => [
'coupon' => 'nXz2yaDl'
]
]);
AP