77 lines
2.7 KiB
PHP
Raw Normal View History

2017-09-14 22:21:00 +03:00
@extends('layouts.admin')
@section('title', trans('general.title.new', ['type' => trans_choice('general.currencies', 1)]))
@section('content')
<!-- Default box -->
<div class="box box-success">
{!! Form::open(['url' => 'settings/currencies', 'role' => 'form']) !!}
<div class="box-body">
{{ Form::textGroup('name', trans('general.name'), 'id-card-o') }}
2017-12-09 16:24:18 +03:00
{{ Form::selectGroup('code', trans('currencies.code'), 'code', $codes) }}
2017-09-14 22:21:00 +03:00
2017-12-09 16:24:18 +03:00
{{ Form::textGroup('rate', trans('currencies.rate'), 'money') }}
2017-09-14 22:21:00 +03:00
2017-12-09 16:36:26 +03:00
{{ Form::textGroup('precision', trans('currencies.precision'), 'bullseye') }}
2017-09-14 22:21:00 +03:00
2017-12-09 16:24:18 +03:00
{{ Form::textGroup('symbol', trans('currencies.symbol.symbol'), 'font') }}
{{ Form::selectGroup('symbol_first', trans('currencies.symbol.position'), 'text-width', ['1' => trans('currencies.symbol.before'), '0' => trans('currencies.symbol.after')]) }}
{{ Form::textGroup('decimal_mark', trans('currencies.decimal_mark'), 'columns') }}
{{ Form::textGroup('thousands_separator', trans('currencies.thousands_separator'), 'columns', []) }}
{{ Form::radioGroup('enabled', trans('general.enabled')) }}
{{ Form::radioGroup('default_currency', trans('currencies.default')) }}
2017-09-14 22:21:00 +03:00
</div>
<!-- /.box-body -->
<div class="box-footer">
{{ Form::saveButtons('settings/currencies') }}
</div>
<!-- /.box-footer -->
{!! Form::close() !!}
</div>
@endsection
2017-11-13 21:55:15 +03:00
@push('scripts')
2017-09-14 22:21:00 +03:00
<script type="text/javascript">
var text_yes = '{{ trans('general.yes') }}';
var text_no = '{{ trans('general.no') }}';
$(document).ready(function(){
$('#enabled_1').trigger('click');
$('#name').focus();
$("#code").select2({
placeholder: "{{ trans('general.form.select.field', ['field' => trans('currencies.code')]) }}"
});
2017-12-09 16:24:18 +03:00
$('#code').change(function() {
$.ajax({
url: '{{ url("settings/currencies/config") }}',
type: 'GET',
dataType: 'JSON',
data: 'code=' + $(this).val(),
success: function(data) {
$('#precision').val(data.precision);
$('#symbol').val(data.symbol);
$('#symbol_first').val(data.symbol_first);
$('#decimal_mark').val(data.decimal_mark);
$('#thousands_separator').val(data.thousands_separator);
// This event Select2 Stylesheet
$('#symbol_first').trigger('change');
}
});
});
2017-09-14 22:21:00 +03:00
});
</script>
2017-11-13 21:55:15 +03:00
@endpush