Files
opensem/resources/views/load/form/select2.blade.php
2021-07-25 23:19:27 +02:00

23 lines
614 B
PHP

@if(!defined('LOAD_SELECT2'))
@push('scripts')
<script src="{{ asset('/assets/plugins/select2/js/select2.full.min.js') }}"></script>
<script src="{{ asset('/assets/plugins/select2/js/i18n/' . App::getLocale() .'.js') }}"></script>
<script>
function initSelect2() {
$(".select2").select2({
placeholder: "{{ __('select_a_value') }}",
allowClear: false,
width: {
value: '100%'
}
});
}
</script>
@endpush
@push('css')
<link rel="stylesheet" href="{!! asset('/assets/plugins/select2/css/select2.min.css') !!}">
@endpush
@php(define('LOAD_SELECT2', true))
@endif