WIP
This commit is contained in:
@@ -117,86 +117,86 @@ class MakePaymentNovaVisaMaster extends Action
|
||||
* @param \Laravel\Nova\Http\Requests\NovaRequest $request
|
||||
* @return array<int, \Laravel\Nova\Fields\Field>
|
||||
*/
|
||||
public function fields(NovaRequest $request): array
|
||||
{
|
||||
$usd_to_tmt = floatval(CurrencyRate::where('currency_from', 'USD')->where('currency_to', 'TMT')->first('value')?->value);
|
||||
// public function fields(NovaRequest $request): array
|
||||
// {
|
||||
// $usd_to_tmt = floatval(CurrencyRate::where('currency_from', 'USD')->where('currency_to', 'TMT')->first('value')?->value);
|
||||
|
||||
$payment_warning_text = VisaMasterSettings::where('name', 'payment_warning_text')->first();
|
||||
// $payment_warning_text = VisaMasterSettings::where('name', 'payment_warning_text')->first();
|
||||
|
||||
if (! $usd_to_tmt || ! $payment_warning_text) {
|
||||
return [];
|
||||
}
|
||||
// if (! $usd_to_tmt || ! $payment_warning_text) {
|
||||
// return [];
|
||||
// }
|
||||
|
||||
$max_value = number_format($usd_to_tmt * 250, 2);
|
||||
$payment_amount = floatval(number_format($max_value, 2, '.', '')) + 115;
|
||||
// $max_value = number_format($usd_to_tmt * 250, 2);
|
||||
// $payment_amount = floatval(number_format($max_value, 2, '.', '')) + 115;
|
||||
|
||||
return [
|
||||
Heading::make(Blade::render(<<<HTML
|
||||
<h3 class="uppercase tracking-wide font-bold text-xs" dusk="heading">1 USD = $usd_to_tmt TMT</h3>
|
||||
<h3 class="uppercase tracking-wide font-bold text-xs" dusk="heading">Bankyň tutumy: 100 TMT</h3>
|
||||
<h3 class="uppercase tracking-wide font-bold text-xs" dusk="heading">GBÜS tutumy: 15 TMT</h3>
|
||||
HTML))->asHtml(),
|
||||
// return [
|
||||
// Heading::make(Blade::render(<<<HTML
|
||||
// <h3 class="uppercase tracking-wide font-bold text-xs" dusk="heading">1 USD = $usd_to_tmt TMT</h3>
|
||||
// <h3 class="uppercase tracking-wide font-bold text-xs" dusk="heading">Bankyň tutumy: 100 TMT</h3>
|
||||
// <h3 class="uppercase tracking-wide font-bold text-xs" dusk="heading">GBÜS tutumy: 15 TMT</h3>
|
||||
// HTML))->asHtml(),
|
||||
|
||||
Text::make(__('Töleg aý'), 'month')
|
||||
->fullWidth()
|
||||
->readonly()
|
||||
->default(today()->translatedFormat('F')),
|
||||
// Text::make(__('Töleg aý'), 'month')
|
||||
// ->fullWidth()
|
||||
// ->readonly()
|
||||
// ->default(today()->translatedFormat('F')),
|
||||
|
||||
Text::make(sprintf('%s (%s)', __('Töleg möçberi'), __('TMT')), 'payment_amount')
|
||||
->fullWidth()
|
||||
->required()
|
||||
->rules('required', 'numeric', 'max:'.$max_value)
|
||||
->help("Iň ýokary möçberi: {$max_value} TMT"),
|
||||
// Text::make(sprintf('%s (%s)', __('Töleg möçberi'), __('TMT')), 'payment_amount')
|
||||
// ->fullWidth()
|
||||
// ->required()
|
||||
// ->rules('required', 'numeric', 'max:'.$max_value)
|
||||
// ->help("Iň ýokary möçberi: {$max_value} TMT"),
|
||||
|
||||
Text::make(__('USD ekwalendi'), 'usd_rate')
|
||||
->fullWidth()
|
||||
->readonly()
|
||||
->dependsOn('payment_amount', function (Text $field, NovaRequest $request, FormData $formData) use ($usd_to_tmt) {
|
||||
$payment_amount = $formData->get('payment_amount');
|
||||
// Text::make(__('USD ekwalendi'), 'usd_rate')
|
||||
// ->fullWidth()
|
||||
// ->readonly()
|
||||
// ->dependsOn('payment_amount', function (Text $field, NovaRequest $request, FormData $formData) use ($usd_to_tmt) {
|
||||
// $payment_amount = $formData->get('payment_amount');
|
||||
|
||||
if ($payment_amount) {
|
||||
$field->setValue(number_format($payment_amount / $usd_to_tmt, 2, '.', ''));
|
||||
} else {
|
||||
$field->setValue('');
|
||||
}
|
||||
}),
|
||||
// if ($payment_amount) {
|
||||
// $field->setValue(number_format($payment_amount / $usd_to_tmt, 2, '.', ''));
|
||||
// } else {
|
||||
// $field->setValue('');
|
||||
// }
|
||||
// }),
|
||||
|
||||
Hidden::make('usd_payment')
|
||||
->dependsOn('payment_amount', function (Hidden $field, NovaRequest $request, FormData $formData) use ($usd_to_tmt) {
|
||||
$payment_amount = $formData->get('payment_amount');
|
||||
// Hidden::make('usd_payment')
|
||||
// ->dependsOn('payment_amount', function (Hidden $field, NovaRequest $request, FormData $formData) use ($usd_to_tmt) {
|
||||
// $payment_amount = $formData->get('payment_amount');
|
||||
|
||||
if ($payment_amount) {
|
||||
$field->setValue(number_format($payment_amount / $usd_to_tmt, 2, '.', ''));
|
||||
} else {
|
||||
$field->setValue('');
|
||||
}
|
||||
}),
|
||||
// if ($payment_amount) {
|
||||
// $field->setValue(number_format($payment_amount / $usd_to_tmt, 2, '.', ''));
|
||||
// } else {
|
||||
// $field->setValue('');
|
||||
// }
|
||||
// }),
|
||||
|
||||
Text::make(__('Jemi (TMT)'), 'total_amount')
|
||||
->fullWidth()
|
||||
->readonly()
|
||||
->dependsOn('payment_amount', function ($field, $request, $formData) {
|
||||
$payment_amount = $formData->get('payment_amount');
|
||||
// Text::make(__('Jemi (TMT)'), 'total_amount')
|
||||
// ->fullWidth()
|
||||
// ->readonly()
|
||||
// ->dependsOn('payment_amount', function ($field, $request, $formData) {
|
||||
// $payment_amount = $formData->get('payment_amount');
|
||||
|
||||
if ($payment_amount) {
|
||||
$field->setValue(
|
||||
floatval(number_format($payment_amount, 2, '.', '')) + 115
|
||||
);
|
||||
} else {
|
||||
$field->setValue('');
|
||||
}
|
||||
}),
|
||||
// if ($payment_amount) {
|
||||
// $field->setValue(
|
||||
// floatval(number_format($payment_amount, 2, '.', '')) + 115
|
||||
// );
|
||||
// } else {
|
||||
// $field->setValue('');
|
||||
// }
|
||||
// }),
|
||||
|
||||
Heading::make(Blade::render(<<<HTML
|
||||
<div class="w-full border text-left appearance-none rounded text-sm font-bold focus:outline-none focus:ring ring-primary-200 dark:ring-gray-600 relative inline-flex items-center justify-center shadow h-9 px-3 bg-primary-500 border-primary-500 text-white dark:text-gray-900">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" class="stroke-current shrink-0 w-6 h-6 mr-2">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path>
|
||||
</svg>
|
||||
<span>$payment_warning_text->value</span>
|
||||
</div>
|
||||
HTML))->asHtml(),
|
||||
];
|
||||
}
|
||||
// Heading::make(Blade::render(<<<HTML
|
||||
// <div class="w-full border text-left appearance-none rounded text-sm font-bold focus:outline-none focus:ring ring-primary-200 dark:ring-gray-600 relative inline-flex items-center justify-center shadow h-9 px-3 bg-primary-500 border-primary-500 text-white dark:text-gray-900">
|
||||
// <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" class="stroke-current shrink-0 w-6 h-6 mr-2">
|
||||
// <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path>
|
||||
// </svg>
|
||||
// <span>$payment_warning_text->value</span>
|
||||
// </div>
|
||||
// HTML))->asHtml(),
|
||||
// ];
|
||||
// }
|
||||
|
||||
/**
|
||||
* Order a payment page
|
||||
|
||||
Reference in New Issue
Block a user