first upload all files

This commit is contained in:
NW
2023-06-11 13:14:03 +01:00
parent f14dbc52b5
commit c08b36d1b6
1705 changed files with 106852 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
<img src="{{ $route }}"
style="cursor:pointer;width:{{ $width }}px;height:{{ $height }}px;"
title="{{ trans('support::captcha.update_code') }}"
onclick="this.setAttribute('src','{{ $route }}?_='+Math.random());var captcha=document.getElementById('{{ $input_id }}');if(captcha){captcha.focus()}"
>

View File

@@ -0,0 +1,3 @@
<a title="{{ $append->getName() }}" class="append pull-right" href="{{ $append->getUrl() }}">
<i class="{{ $append->getIcon() }}"></i>
</a>

View File

@@ -0,0 +1 @@
<small class="badge pull-right {{ $badge->getClass() }}">{{ $badge->getValue() }}</small>

View File

@@ -0,0 +1,7 @@
@if ($group->shouldShowHeading())
<li class="header">{{ $group->getName() }}</li>
@endif
@foreach ($items as $item)
{!! $item !!}
@endforeach

View File

@@ -0,0 +1,35 @@
<li class="{{ $item->getItemClass() ? $item->getItemClass() : null }}
{{ $active ? 'active' : null }}
{{ $item->hasItems() ? 'treeview' : null }}
">
<a href="{{ $item->getUrl() }}" class="{{ count($appends) > 0 ? 'hasAppend' : null }}"
@if ($item->getNewTab())
target="_blank"
@endif
>
<i class="{{ $item->getIcon() }}"></i>
<span>{{ $item->getName() }}</span>
@foreach ($badges as $badge)
{!! $badge !!}
@endforeach
@if ($item->hasItems())
<span class="pull-right-container">
<i class="{{ $item->getToggleIcon() }} pull-right"></i>
</span>
@endif
</a>
@foreach ($appends as $append)
{!! $append !!}
@endforeach
@if (count($items) > 0)
<ul class="treeview-menu">
@foreach ($items as $item)
{!! $item !!}
@endforeach
</ul>
@endif
</li>

View File

@@ -0,0 +1,5 @@
<ul class="sidebar-menu">
@foreach($groups as $group)
{!! $group !!}
@endforeach
</ul>