19 lines
514 B
PHP
19 lines
514 B
PHP
@section('scripts')
|
|
<script>
|
|
const select_id = "select#aircraft_select";
|
|
const destContainer = $('#fares_container');
|
|
|
|
$(select_id).change((e) => {
|
|
|
|
const aircraft_id = $(select_id + ' option:selected').val();
|
|
const url = '{{ url('/pireps/fares') }}?aircraft_id=' + aircraft_id;
|
|
console.log('aircraft select change: ', aircraft_id);
|
|
|
|
axios.get(url).then(response => {
|
|
console.log('returned new fares', response);
|
|
destContainer.html(response.data);
|
|
});
|
|
});
|
|
</script>
|
|
@endsection
|