This commit is contained in:
2025-11-18 00:37:21 +05:00
parent bc45f2756e
commit cbd469c97f
2 changed files with 5 additions and 5 deletions

View File

@@ -21,8 +21,6 @@ class PayVisaMasterPaymentAction
->label(sprintf('%s %s', __('Make payment for:'), today()->translatedFormat('F')))
->icon('heroicon-o-credit-card')
->modal()
// ->disabled(true)
// ->tooltip()
->schema(function () {
$usd_to_tmt = floatval(CurrencyRate::where('currency_from', 'USD')->where('currency_to', 'TMT')->first('value')?->value);
@@ -88,12 +86,12 @@ class PayVisaMasterPaymentAction
}),
TextInput::make('usd_rate')
->label(__('USD ekwalendi'))
->label(__('USD rate'))
->suffix('USD')
->readOnly(),
TextInput::make('total_amount')
->label(__('Total amount'))
->label(__('Total'))
->suffix('TMT')
->readOnly(),
]),