order invoice fix with trans.
This commit is contained in:
parent
69d9bae0d3
commit
4450e58783
|
|
@ -11,7 +11,7 @@ if (!function_exists('money')) {
|
|||
function money($amount, \App\Models\Currency $currency = null)
|
||||
{
|
||||
if(!$currency){
|
||||
return number_format($amount,2,'.',',').' tmt';
|
||||
return number_format($amount,2,'.',',').' TMT';
|
||||
}
|
||||
return $currency->symbol_left . number_format($amount, $currency->decimal_place, $currency->decimal_point,
|
||||
$currency->thousand_point) . $currency->symbol_right;
|
||||
|
|
|
|||
|
|
@ -851,7 +851,6 @@ class EventCheckoutController extends Controller
|
|||
'order_reference' => $order->order_reference,
|
||||
]);
|
||||
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -14,8 +14,8 @@ return [
|
|||
'below_order_details_header' => '',
|
||||
'below_payment_information_header' => '',
|
||||
'below_tickets' => 'Выберите количество билетов и нажмите «зарегистрироваться». На следующем экране вы будете платить за них.',
|
||||
'booking_fee' => 'Плата за бронирование',
|
||||
'booking_fees' => 'Стоимость бронирования',
|
||||
'booking_fee' => 'Плата за услуги',
|
||||
'booking_fees' => 'Стоимость услуги',
|
||||
'card_number' => 'Номер карты',
|
||||
'checkout_submit' => 'Оплатить',
|
||||
'checkout_order' => 'Продолжить к оплате',
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@
|
|||
|
||||
@endif
|
||||
|
||||
<h3>
|
||||
<h3 class="mt-5">
|
||||
@lang("Public_ViewEvent.order_items")
|
||||
</h3>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue