chore(deps): added adminlte vendored items
(this might not be entirely necessary unless we're changing everything adminlte publishes) Signed-off-by: miguel456 <me@nogueira.codes>
This commit is contained in:
28
resources/views/vendor/adminlte/partials/common/brand-logo-xl.blade.php
vendored
Normal file
28
resources/views/vendor/adminlte/partials/common/brand-logo-xl.blade.php
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
@inject('layoutHelper', 'JeroenNoten\LaravelAdminLte\Helpers\LayoutHelper')
|
||||
|
||||
@php( $dashboard_url = View::getSection('dashboard_url') ?? config('adminlte.dashboard_url', 'home') )
|
||||
|
||||
@if (config('adminlte.use_route_url', false))
|
||||
@php( $dashboard_url = $dashboard_url ? route($dashboard_url) : '' )
|
||||
@else
|
||||
@php( $dashboard_url = $dashboard_url ? url($dashboard_url) : '' )
|
||||
@endif
|
||||
|
||||
<a href="{{ $dashboard_url }}"
|
||||
@if($layoutHelper->isLayoutTopnavEnabled())
|
||||
class="navbar-brand logo-switch {{ config('adminlte.classes_brand') }}"
|
||||
@else
|
||||
class="brand-link logo-switch {{ config('adminlte.classes_brand') }}"
|
||||
@endif>
|
||||
|
||||
{{-- Small brand logo --}}
|
||||
<img src="{{ asset(config('adminlte.logo_img', 'vendor/adminlte/dist/img/AdminLTELogo.png')) }}"
|
||||
alt="{{ config('adminlte.logo_img_alt', 'AdminLTE') }}"
|
||||
class="{{ config('adminlte.logo_img_class', 'brand-image-xl') }} logo-xs">
|
||||
|
||||
{{-- Large brand logo --}}
|
||||
<img src="{{ asset(config('adminlte.logo_img_xl')) }}"
|
||||
alt="{{ config('adminlte.logo_img_alt', 'AdminLTE') }}"
|
||||
class="{{ config('adminlte.logo_img_xl_class', 'brand-image-xs') }} logo-xl">
|
||||
|
||||
</a>
|
29
resources/views/vendor/adminlte/partials/common/brand-logo-xs.blade.php
vendored
Normal file
29
resources/views/vendor/adminlte/partials/common/brand-logo-xs.blade.php
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
@inject('layoutHelper', 'JeroenNoten\LaravelAdminLte\Helpers\LayoutHelper')
|
||||
|
||||
@php( $dashboard_url = View::getSection('dashboard_url') ?? config('adminlte.dashboard_url', 'home') )
|
||||
|
||||
@if (config('adminlte.use_route_url', false))
|
||||
@php( $dashboard_url = $dashboard_url ? route($dashboard_url) : '' )
|
||||
@else
|
||||
@php( $dashboard_url = $dashboard_url ? url($dashboard_url) : '' )
|
||||
@endif
|
||||
|
||||
<a href="{{ $dashboard_url }}"
|
||||
@if($layoutHelper->isLayoutTopnavEnabled())
|
||||
class="navbar-brand {{ config('adminlte.classes_brand') }}"
|
||||
@else
|
||||
class="brand-link {{ config('adminlte.classes_brand') }}"
|
||||
@endif>
|
||||
|
||||
{{-- Small brand logo --}}
|
||||
<img src="{{ asset(config('adminlte.logo_img', 'vendor/adminlte/dist/img/AdminLTELogo.png')) }}"
|
||||
alt="{{ config('adminlte.logo_img_alt', 'AdminLTE') }}"
|
||||
class="{{ config('adminlte.logo_img_class', 'brand-image img-circle elevation-3') }}"
|
||||
style="opacity:.8">
|
||||
|
||||
{{-- Brand text --}}
|
||||
<span class="brand-text font-weight-light {{ config('adminlte.classes_brand_text') }}">
|
||||
{!! config('adminlte.logo', '<b>Admin</b>LTE') !!}
|
||||
</span>
|
||||
|
||||
</a>
|
10
resources/views/vendor/adminlte/partials/common/preloader.blade.php
vendored
Normal file
10
resources/views/vendor/adminlte/partials/common/preloader.blade.php
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
<div class="preloader flex-column justify-content-center align-items-center">
|
||||
|
||||
{{-- Preloader logo --}}
|
||||
<img src="{{ asset(config('adminlte.preloader.img.path', 'vendor/adminlte/dist/img/AdminLTELogo.png')) }}"
|
||||
class="{{ config('adminlte.preloader.img.effect', 'animation__shake') }}"
|
||||
alt="{{ config('adminlte.preloader.img.alt', 'AdminLTE Preloader Image') }}"
|
||||
width="{{ config('adminlte.preloader.img.width', 60) }}"
|
||||
height="{{ config('adminlte.preloader.img.height', 60) }}">
|
||||
|
||||
</div>
|
Reference in New Issue
Block a user