88 lines
2.3 KiB
PHP
88 lines
2.3 KiB
PHP
@section('scripts')
|
|
<script>
|
|
|
|
function setEditable() {
|
|
|
|
const api_key = $('meta[name="api-key"]').attr('content');
|
|
const csrf_token = $('meta[name="csrf-token"]').attr('content');
|
|
|
|
$('#flight_fares a').editable({
|
|
type: 'text',
|
|
mode: 'inline',
|
|
emptytext: 'inherited',
|
|
url: '{{ url('/admin/flights/'.$flight->id.'/fares') }}',
|
|
title: 'Enter override value',
|
|
ajaxOptions: {
|
|
type: 'post',
|
|
headers: {
|
|
'x-api-key': api_key,
|
|
'X-CSRF-TOKEN': csrf_token
|
|
}
|
|
},
|
|
params: function (params) {
|
|
return {
|
|
_method: 'put',
|
|
fare_id: params.pk,
|
|
name: params.name,
|
|
value: params.value
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
$(document).ready(function () {
|
|
|
|
const csrf_token = $('meta[name="csrf-token"]').attr('content');
|
|
const api_key = $('meta[name="api-key"]').attr('content');
|
|
|
|
setEditable();
|
|
|
|
$('#flight_fields_wrapper a.inline').editable({
|
|
type: 'text',
|
|
mode: 'inline',
|
|
emptytext: '0',
|
|
url: '{{ url('/admin/flights/'.$flight->id.'/fields') }}',
|
|
ajaxOptions: {
|
|
type: 'post',
|
|
headers: {
|
|
'x-api-key': api_key,
|
|
'X-CSRF-TOKEN': csrf_token
|
|
}
|
|
},
|
|
params: function (params) {
|
|
return {
|
|
_method: 'put',
|
|
field_id: params.pk,
|
|
name: params.name,
|
|
value: params.value
|
|
}
|
|
}
|
|
});
|
|
|
|
$(document).on('submit', 'form.pjax_flight_fields', function (event) {
|
|
event.preventDefault();
|
|
$.pjax.submit(event, '#flight_fields_wrapper', {push: false});
|
|
setEditable();
|
|
});
|
|
|
|
$(document).on('submit', 'form.pjax_subfleet_form', function (event) {
|
|
event.preventDefault();
|
|
$.pjax.submit(event, '#subfleet_flight_wrapper', {push: false});
|
|
setEditable();
|
|
});
|
|
|
|
$(document).on('submit', 'form.pjax_fares_form', function (event) {
|
|
event.preventDefault();
|
|
console.log(event);
|
|
$.pjax.submit(event, '#flight_fares_wrapper', {push: false});
|
|
setEditable();
|
|
});
|
|
|
|
$(document).on('pjax:complete', function () {
|
|
$(".select2").select2();
|
|
setEditable();
|
|
});
|
|
});
|
|
</script>
|
|
@endsection
|