- {!! FormField::radios('in_out', [trans('payment.out'), trans('payment.in')], ['label' => trans('payment.in_out'), 'value' => 1]) !!}
+ {!! FormField::radios('in_out', [__('payment.out'), __('payment.in')], ['label' => __('payment.in_out'), 'value' => 1]) !!}
- {!! FormField::radios('type_id', PaymentType::toArray(), ['label'=> trans('payment.type'), 'value' => 1, 'list_style' => 'unstyled']) !!}
+ {!! FormField::radios('type_id', PaymentType::toArray(), ['label'=> __('payment.type'), 'value' => 1, 'list_style' => 'unstyled']) !!}
- {!! 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')]) !!}
- {!! FormField::select('project_id', $projects, ['label'=> trans('payment.project'), 'value' => Request::get('project_id')]) !!}
+ {!! FormField::select('project_id', $projects, ['label'=> __('payment.project'), 'value' => Request::get('project_id')]) !!}
- {!! FormField::select('partner_id', $partners, ['label'=> trans('payment.customer'), 'value' => Request::get('customer_id')]) !!}
+ {!! FormField::select('partner_id', $partners, ['label'=> __('payment.customer'), 'value' => Request::get('customer_id')]) !!}
- {!! FormField::textarea('description', ['label'=> trans('payment.description'), 'rows' => 3]) !!}
+ {!! FormField::textarea('description', ['label'=> __('payment.description'), 'rows' => 3]) !!}