{{-- ########################################### --}}
{{-- Extra CSS and JS for this particular filter --}}
{{-- FILTERS EXTRA CSS --}}
{{-- push things in the after_styles section --}}
@push('crud_list_styles')
{{-- include select2 css --}}
@basset('https://unpkg.com/select2@4.0.13/dist/css/select2.min.css')
@basset('https://unpkg.com/select2-bootstrap-theme@0.1.0-beta.10/dist/select2-bootstrap.min.css')
@endpush
{{-- FILTERS EXTRA JS --}}
{{-- push things in the after_scripts section --}}
@push('crud_list_scripts')
{{-- include select2 js --}}
@basset('https://unpkg.com/select2@4.0.13/dist/js/select2.full.min.js')
@if (app()->getLocale() !== 'en')
@basset('https://unpkg.com/select2@4.0.13/dist/js/i18n/' . str_replace('_', '-', app()->getLocale()) . '.js')
@endif
@endpush
{{-- End of Extra CSS and JS --}}
{{-- ########################################## --}}