enhance components, add mailtemplate, add traits for translations, for stats

This commit is contained in:
Ludovic CANDELLIER
2023-02-13 22:52:39 +01:00
parent f2f4788ce1
commit 0ecc7c73c7
32 changed files with 891 additions and 277 deletions

View File

@@ -1 +1,16 @@
@include('components.form.select', ['class' => 'duallist', 'multiple' => true])
@if ($disabled ?? false)
@if (count($list ?? []))
<ul>
@foreach($list as $key => $item)
@if (in_array($key, $values))
<li>{{ $item }}</li>
@endif
@endforeach
</ul>
@endif
@else
@include('components.form.select', [
'class' => 'duallist',
'multiple' => true,
])
@endif