2017-12-20 05:19:06 +08:00
|
|
|
@extends('layouts.default.app')
|
2017-08-03 04:12:26 +08:00
|
|
|
|
|
|
|
@section('content')
|
2017-12-20 05:19:06 +08:00
|
|
|
<div class="row">
|
|
|
|
@include('layouts.default.flights.show_fields')
|
|
|
|
</div>
|
2017-08-03 04:12:26 +08:00
|
|
|
@endsection
|
|
|
|
@section('scripts')
|
|
|
|
<script>
|
|
|
|
$(document).ready(function () {
|
|
|
|
$(".select2_dropdown").select2();
|
|
|
|
|
|
|
|
$(document).on('submit', 'form.pjax_form', function (event) {
|
|
|
|
event.preventDefault();
|
|
|
|
$.pjax.submit(event, '#subfleet_flight_wrapper', {push: false});
|
|
|
|
});
|
|
|
|
|
|
|
|
$(document).on('pjax:complete', function() {
|
|
|
|
$(".select2_dropdown").select2();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
@endsection
|