@@ -29,16 +29,16 @@
$partners,
[
'placeholder' => 'Pilih Pekerja',
- 'label' => trans('payment.customer'),
+ 'label' => __('payment.customer'),
'value' => Request::get('customer_id'),
]
) !!}
- {!! FormField::text('date', ['label' => trans('payment.date')]) !!}
+ {!! FormField::text('date', ['label' => __('payment.date')]) !!}
- {!! FormField::price('amount', ['label' => trans('payment.amount'), 'currency' => Option::get('money_sign', 'Rp')]) !!}
+ {!! FormField::price('amount', ['label' => __('payment.amount'), 'currency' => Option::get('money_sign', 'Rp')]) !!}
@@ -46,18 +46,18 @@
{!! FormField::radios(
'type_id',
PaymentType::toArray(),
- ['label' => trans('payment.type'), 'value' => 1, 'list_style' => 'unstyled']
+ ['label' => __('payment.type'), 'value' => 1, 'list_style' => 'unstyled']
) !!}
- {!! FormField::textarea('description', ['label' => trans('payment.description'), 'rows' => 3]) !!}
+ {!! FormField::textarea('description', ['label' => __('payment.description'), 'rows' => 3]) !!}