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 7449229ff7
commit 685160ddf5
32 changed files with 891 additions and 277 deletions

View File

@@ -1,6 +1,14 @@
<textarea
name="{{ $name }}"
@if (isset($id_name))id="{{ $id_name }}"@endif
@include('components.form.label')
<textarea name="{{ $name }}"
@isset($id_name)id="{{ $id_name }}"@endisset
class="form-control {{ $class ?? null }}"
@if (isset($rows)) rows="{{ $rows }}"@endif
>{{ $value ?? null }}</textarea>
@isset($rows) rows="{{ $rows }}"@endisset
@if ($style ?? false) style="{{ $style }}" @endif
@if ($disabled ?? false) disabled @endif
@if ($required ?? false) required @endif
@if ($readonly ?? false) readonly @endif
@if ($autofocus ?? false) autofocus @endif
@if ($maxlength ?? false) maxlength="{{ $maxlength }}" @endif
{{ $meta ?? null}}
>{{ $value ?? ''}}</textarea>