mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
19 lines
720 B
PHP
19 lines
720 B
PHP
<!-- Push section css -->
|
|
<?= $this->section('css') ?>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/select2@4.0.13/dist/css/select2.min.css">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/select2-bootstrap-5-theme@1.1.1/dist/select2-bootstrap-5-theme.min.css" />
|
|
<?= $this->endSection() ?>
|
|
|
|
<!-- Push additional js -->
|
|
<?= $this->section('additionalExternalJs') ?>
|
|
<script src="https://cdn.jsdelivr.net/npm/select2@4.0.13/dist/js/select2.full.min.js"></script>
|
|
<?= $this->endSection() ?>
|
|
|
|
<?= $this->section('additionalInlineJs') ?>
|
|
|
|
$('.select2bs').select2({
|
|
theme: "bootstrap-5",
|
|
allowClear: false,
|
|
});
|
|
|
|
<?= $this->endSection() ?>
|