enhance components, add mailtemplate, add traits for translations, for stats
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
@include('components.form.label')
|
||||
|
||||
<div class="input-group">
|
||||
|
||||
@include('components.form.input')
|
||||
|
||||
@include('components.form.input', ['label' => false])
|
||||
<div class="input-group-append">
|
||||
<button class="btn btn-outline-secondary dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="fa fa-globe"></i>
|
||||
</button>
|
||||
<div class="dropdown-menu">
|
||||
@if (is_array($translations))
|
||||
@if (is_array($translations ?? false))
|
||||
@foreach ($translations as $lang => $translation)
|
||||
<a class="dropdown-item" href="#">{{ $lang }} : {{ $translation }}</a>
|
||||
@endforeach
|
||||
|
||||
Reference in New Issue
Block a user