Add new component, add flags on filter

This commit is contained in:
Ludovic CANDELLIER
2022-05-09 23:14:50 +02:00
parent 3370b8061c
commit ce9f613b66
8 changed files with 184 additions and 6 deletions

View File

@@ -0,0 +1,13 @@
@if(!defined('LOAD_TOOLTIP'))
@push('scripts')
<script>
function initTooltip() {
$('[data-toggle="tooltip"]').tooltip({
trigger : 'hover',
delay: { "show": 500, "hide": 100 }
});
}
</script>
@endpush
@php(define('LOAD_TOOLTIP', true))
@endif