first upload all files
This commit is contained in:
5
resources/views/vendor/bone/captcha/image.blade.php
vendored
Normal file
5
resources/views/vendor/bone/captcha/image.blade.php
vendored
Normal 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()}"
|
||||
>
|
||||
3
resources/views/vendor/sidebar/append.blade.php
vendored
Normal file
3
resources/views/vendor/sidebar/append.blade.php
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
<a title="{{ $append->getName() }}" class="append pull-right" href="{{ $append->getUrl() }}">
|
||||
<i class="{{ $append->getIcon() }}"></i>
|
||||
</a>
|
||||
1
resources/views/vendor/sidebar/badge.blade.php
vendored
Normal file
1
resources/views/vendor/sidebar/badge.blade.php
vendored
Normal file
@@ -0,0 +1 @@
|
||||
<small class="badge pull-right {{ $badge->getClass() }}">{{ $badge->getValue() }}</small>
|
||||
7
resources/views/vendor/sidebar/group.blade.php
vendored
Normal file
7
resources/views/vendor/sidebar/group.blade.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
@if ($group->shouldShowHeading())
|
||||
<li class="header">{{ $group->getName() }}</li>
|
||||
@endif
|
||||
|
||||
@foreach ($items as $item)
|
||||
{!! $item !!}
|
||||
@endforeach
|
||||
35
resources/views/vendor/sidebar/item.blade.php
vendored
Normal file
35
resources/views/vendor/sidebar/item.blade.php
vendored
Normal 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>
|
||||
5
resources/views/vendor/sidebar/menu.blade.php
vendored
Normal file
5
resources/views/vendor/sidebar/menu.blade.php
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
<ul class="sidebar-menu">
|
||||
@foreach($groups as $group)
|
||||
{!! $group !!}
|
||||
@endforeach
|
||||
</ul>
|
||||
Reference in New Issue
Block a user