diff --git a/app/Nova/Actions/MakeSberPaymentAction.php b/app/Nova/Actions/MakeSberPaymentAction.php index 99118a2..442c27c 100644 --- a/app/Nova/Actions/MakeSberPaymentAction.php +++ b/app/Nova/Actions/MakeSberPaymentAction.php @@ -69,14 +69,14 @@ class MakeSberPaymentAction extends Action return []; } - $max_value = number_format(96.05 * 250 * 0.038611, 2, '.', ''); + $max_value = number_format(96.05 * 250 * 0.036621, 2, '.', ''); $tvebTaxTMT = $usd_to_tmt->value * 18; $bankTax = 120.75; return [ Heading::make(Blade::render(<<1 USD = $usd_to_tmt->value TMT -

1 RUB = 0.038611 TMT

+

1 RUB = 0.036621 TMT


TVEB USD tutumy: 18 USD

TVEB tutumy TMT = $tvebTaxTMT TMT

@@ -95,7 +95,7 @@ class MakeSberPaymentAction extends Action ->readonly() ->dependsOn('payment_amount', function ($field, $request, $formData) { if ($formData->payment_amount) { - $usdValue = number_format($formData->payment_amount / (96.05 * 0.038611), 2, '.', ''); + $usdValue = number_format($formData->payment_amount / (96.05 * 0.036621), 2, '.', ''); $field->setValue($usdValue); } else {